diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-05 15:38:20 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-05 15:38:20 +0000 |
commit | e4579877f543c91cc1e824dd7e90fd0ed180d331 (patch) | |
tree | 327b6ac7f2e3bf928e2316d27101b063715137e4 /fpicker | |
parent | aa22ccf09d83e93fa6fe6a0c487868a2f84be6db (diff) |
INTEGRATION: CWS aquafilepicker02_DEV300 (1.2.40); FILE MERGED
2008/01/14 08:23:24 fheckl 1.2.40.1: Code cleanup and some implementation details
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/aqua/SalAquaFolderPicker.hxx | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/fpicker/source/aqua/SalAquaFolderPicker.hxx b/fpicker/source/aqua/SalAquaFolderPicker.hxx index 96234283cf33..b8c15c392b0c 100644 --- a/fpicker/source/aqua/SalAquaFolderPicker.hxx +++ b/fpicker/source/aqua/SalAquaFolderPicker.hxx @@ -4,9 +4,9 @@ * * $RCSfile: SalAquaFolderPicker.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: ihi $ $Date: 2007-07-11 10:59:33 $ + * last change: $Author: kz $ $Date: 2008-03-05 16:38:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -40,8 +40,24 @@ // includes of other projects //_______________________________________________________________________________________________________________________ -#ifndef _CPPUHELPER_COMPBASE3_HXX_ -#include <cppuhelper/implbase3.hxx> +#ifndef _CPPUHELPER_COMPBASE4_HXX_ +#include <cppuhelper/implbase4.hxx> +#endif + +#ifndef _COM_SUN_STAR_UTIL_XCANCELLABLE_HPP_ +#include <com/sun/star/util/XCancellable.hpp> +#endif + +#ifndef _COM_SUN_STAR_LANG_XEVENTLISTENER_HPP_ +#include <com/sun/star/lang/XEventListener.hpp> +#endif + +#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_ +#include <com/sun/star/lang/XServiceInfo.hpp> +#endif + +#ifndef _COM_SUN_STAR_UI_XFOLDERPICKER_HPP_ +#include <com/sun/star/ui/dialogs/XFolderPicker.hpp> #endif #ifndef _SALAQUAPICKER_HXX_ @@ -62,9 +78,10 @@ class SalAquaFolderPicker : public SalAquaPicker, - public cppu::WeakImplHelper3< + public cppu::WeakImplHelper4< ::com::sun::star::ui::dialogs::XFolderPicker, ::com::sun::star::lang::XServiceInfo, + ::com::sun::star::lang::XEventListener, ::com::sun::star::util::XCancellable > { public: @@ -129,7 +146,7 @@ private: // prevent copy and assignment SalAquaFolderPicker( const SalAquaFolderPicker& ); SalAquaFolderPicker& operator=( const SalAquaFolderPicker& ); -private: + // to instantiate own services ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceMgr; |