diff options
author | Noel Grandin <noel@peralex.com> | 2013-02-20 08:41:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-02-20 08:43:06 +0200 |
commit | d4b904f7d15be8460dbff4cf6c8d500aea5a4fa3 (patch) | |
tree | dd7345e1df62562289984e648b5a03e9faeb5171 /vcl/unx/kde | |
parent | 03d5d88911111076b1c668d2eae30b5690bb564a (diff) |
more fixes for my FilePicker changes
in 4b51374a7021d52f7f1be1861e2ee6a011b30ecd "fdo#46808, Adapt
ui::dialogs::FilePicker UNO service to new style"
Change-Id: Ie23b49d9eb6e491b543d44da124e50efa5b65376
Diffstat (limited to 'vcl/unx/kde')
-rw-r--r-- | vcl/unx/kde/UnxFilePicker.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/unx/kde/UnxFilePicker.hxx b/vcl/unx/kde/UnxFilePicker.hxx index 4eab1833f23a..37ba21c5c9ca 100644 --- a/vcl/unx/kde/UnxFilePicker.hxx +++ b/vcl/unx/kde/UnxFilePicker.hxx @@ -20,11 +20,12 @@ #ifndef _UNXFILEPICKER_HXX_ #define _UNXFILEPICKER_HXX_ -#include <cppuhelper/compbase4.hxx> +#include <cppuhelper/compbase5.hxx> #include <osl/conditn.hxx> #include <osl/mutex.hxx> #include <rtl/ustrbuf.hxx> +#include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/ui/dialogs/XFilePicker2.hpp> #include <com/sun/star/ui/dialogs/XFilePicker3.hpp> @@ -46,11 +47,12 @@ protected: class UnxFilePicker : public UnxFilePickerDummy, - public cppu::WeakComponentImplHelper4< + public cppu::WeakComponentImplHelper5< ::com::sun::star::ui::dialogs::XFilePicker2, ::com::sun::star::ui::dialogs::XFilePicker3, ::com::sun::star::ui::dialogs::XFilePickerControlAccess, // TODO ::com::sun::star::ui::dialogs::XFilePreview, + ::com::sun::star::lang::XInitialization, ::com::sun::star::lang::XServiceInfo > { protected: |