diff options
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.hxx | 5 | ||||
-rw-r--r-- | fpicker/source/win32/filepicker/FilePicker.hxx | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/fpicker/source/aqua/SalAquaFilePicker.hxx b/fpicker/source/aqua/SalAquaFilePicker.hxx index f1e4f232ffa8..d38a0a2a399a 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.hxx +++ b/fpicker/source/aqua/SalAquaFilePicker.hxx @@ -20,7 +20,7 @@ #ifndef _SALAQUAFILEPICKER_HXX_ #define _SALAQUAFILEPICKER_HXX_ -#include <cppuhelper/compbase3.hxx> +#include <cppuhelper/compbase4.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/ui/dialogs/XFilePicker3.hpp> #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp> @@ -47,9 +47,10 @@ // class declaration //---------------------------------------------------------- -typedef ::cppu::WeakComponentImplHelper3 < +typedef ::cppu::WeakComponentImplHelper4 < ::com::sun::star::ui::dialogs::XFilePicker3, ::com::sun::star::ui::dialogs::XFilePickerControlAccess, + ::com::sun::star::lang::XInitialization, ::com::sun::star::lang::XServiceInfo > SalAquaFilePicker_Base; class SalAquaFilePicker : diff --git a/fpicker/source/win32/filepicker/FilePicker.hxx b/fpicker/source/win32/filepicker/FilePicker.hxx index 83b7ecdf346c..73bc3d5a53d1 100644 --- a/fpicker/source/win32/filepicker/FilePicker.hxx +++ b/fpicker/source/win32/filepicker/FilePicker.hxx @@ -20,7 +20,7 @@ #ifndef _FILEPICKER_HXX_ #define _FILEPICKER_HXX_ -#include <cppuhelper/compbase5.hxx> +#include <cppuhelper/compbase6.hxx> #include <osl/mutex.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/ui/dialogs/XFilePicker2.hpp> @@ -52,11 +52,12 @@ protected: osl::Mutex m_rbHelperMtx; }; -typedef ::cppu::WeakComponentImplHelper5 < +typedef ::cppu::WeakComponentImplHelper6 < ::com::sun::star::ui::dialogs::XFilePicker2, ::com::sun::star::ui::dialogs::XFilePicker3, ::com::sun::star::ui::dialogs::XFilePickerControlAccess, ::com::sun::star::ui::dialogs::XFilePreview, + ::com::sun::star::lang::XInitialization, ::com::sun::star::lang::XServiceInfo > CFilePicker_Base; class CFilePicker : |