diff options
author | Noel Grandin <noel@peralex.com> | 2012-10-11 15:43:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-10-23 10:26:40 +0200 |
commit | c988da288ec473a28f61ebb53aa3ff82bab11ef4 (patch) | |
tree | 284f184384dba369c40e0caff533a2d683e9d478 /fpicker | |
parent | eb016138e817d686795e1902a7a295d93639da27 (diff) |
fdo#46808, Adapt ui::dialogs::FolderPicker UNO service to new style
Create a merged XFolderPicker2 interface for this service to implement.
Which is backwards-compatible, but does not require creating a new service.
Change-Id: I4a2c2a8d491a8d5633c19ddcea547f0efe75b91d
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/folderpicker/FolderPicker.hxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fpicker/source/win32/folderpicker/FolderPicker.hxx b/fpicker/source/win32/folderpicker/FolderPicker.hxx index a795f5fbfd71..ec95c267e97e 100644 --- a/fpicker/source/win32/folderpicker/FolderPicker.hxx +++ b/fpicker/source/win32/folderpicker/FolderPicker.hxx @@ -20,7 +20,7 @@ #ifndef _FOLDERPICKER_HXX_ #define _FOLDERPICKER_HXX_ -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase2.hxx> #include <osl/mutex.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> @@ -36,10 +36,9 @@ //---------------------------------------------------------- class CFolderPicker : - public cppu::WeakImplHelper3< - com::sun::star::ui::dialogs::XFolderPicker, - com::sun::star::lang::XServiceInfo, - com::sun::star::util::XCancellable > + public cppu::WeakImplHelper2< + com::sun::star::ui::dialogs::XFolderPicker2, + com::sun::star::lang::XServiceInfo > { public: |