summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/csvcontrol.hxx
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-05-01 15:55:01 +0200
committerMichael Meeks <michael.meeks@collabora.com>2015-05-02 00:50:02 +0200
commit526d192333615e8b3b10f144faad987519be1044 (patch)
treeef0553226c3d5aec08de8c6258da725dc541ab0c /sc/source/ui/inc/csvcontrol.hxx
parent9d17e1250acb7c5c60cdf8d71476c5873b8b4a9b (diff)
Unwind odd reference handling with csvcontrol.
Change-Id: I5002ae13455825b0b7516e228b1e3bad7adc669a
Diffstat (limited to 'sc/source/ui/inc/csvcontrol.hxx')
-rw-r--r--sc/source/ui/inc/csvcontrol.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/source/ui/inc/csvcontrol.hxx b/sc/source/ui/inc/csvcontrol.hxx
index 3639d6f93eaf..e2fbc49ab943 100644
--- a/sc/source/ui/inc/csvcontrol.hxx
+++ b/sc/source/ui/inc/csvcontrol.hxx
@@ -225,16 +225,15 @@ protected:
typedef ::std::vector< OUString > StringVec;
typedef ::std::vector< StringVec > StringVecVec;
- typedef ::com::sun::star::uno::Reference<
- ::com::sun::star::accessibility::XAccessible > XAccessibleRef;
+ typedef ::css::uno::Reference<
+ ::css::accessibility::XAccessible > XAccessibleRef;
private:
Link<> maCmdHdl; /// External command handler.
ScCsvCmd maCmd; /// Data of last command.
const ScCsvLayoutData& mrData; /// Shared layout data.
- XAccessibleRef mxAccessible; /// The accessible object of the control.
- ScAccessibleCsvControl* mpAccessible; /// Pointer to the accessible implementation object.
+ rtl::Reference<ScAccessibleCsvControl> mxAccessible; /// Reference to the accessible implementation object.
bool mbValidGfx; /// Content of virtual devices valid?
public: