diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-05-26 21:21:13 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-05-26 22:55:24 +0200 |
commit | 59ceaff255e2759f2e416d76b95f6efa22819c39 (patch) | |
tree | e83e294c6b5e375a464a666f51287212322fd34c /include/svx/rubydialog.hxx | |
parent | 598a8869913c824465f837c30b19dcc377b04460 (diff) |
svx: need a UNO interface to use css::uno::Reference
Change-Id: I16a144ed410f5ef3f49ec4febf199aa2db96bdaa
Diffstat (limited to 'include/svx/rubydialog.hxx')
-rw-r--r-- | include/svx/rubydialog.hxx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/svx/rubydialog.hxx b/include/svx/rubydialog.hxx index 441ebdcc52ba..a9aae6e140cb 100644 --- a/include/svx/rubydialog.hxx +++ b/include/svx/rubydialog.hxx @@ -29,14 +29,8 @@ #include <vcl/button.hxx> #include <vcl/edit.hxx> #include <vcl/scrbar.hxx> -#include <com/sun/star/uno/Reference.h> #include <svx/svxdllapi.h> - -namespace com{namespace sun{namespace star{ - namespace view{ - class XSelectionChangeListener; - } -}}} +#include <rtl/ref.hxx> class SvxRubyDialog; @@ -166,7 +160,7 @@ public: virtual void Deactivate() override; private: - css::uno::Reference<SvxRubyData_Impl> pImpl; + rtl::Reference<SvxRubyData_Impl> m_pImpl; }; #endif // INCLUDED_SVX_RUBYDIALOG_HXX |