diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-02-26 13:56:54 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-02-26 13:56:54 +0000 |
commit | a39ceeacb3022b242f747a945bb3a6993ca229ca (patch) | |
tree | 56244d410abd0390006b2949aaa1e327969b6ab7 | |
parent | d74fb65bb72240791bc1d33e04e78509eaf4c9a9 (diff) |
INTEGRATION: CWS custommeta (1.10.52); FILE MERGED
2008/01/25 17:15:52 mst 1.10.52.1: - sfx2/inc/guisaveas.hxx, sfx2/source/doc/guisaveas.cxx:
+ use XDocumentInfo instead of SfxDocumentInfo
+ remove unused methods SfxStoringHelper::FillCopy and PrepareDocInfoForStore
-rw-r--r-- | sfx2/inc/guisaveas.hxx | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/sfx2/inc/guisaveas.hxx b/sfx2/inc/guisaveas.hxx index 4ad45857d773..d04e075416d8 100644 --- a/sfx2/inc/guisaveas.hxx +++ b/sfx2/inc/guisaveas.hxx @@ -4,9 +4,9 @@ * * $RCSfile: guisaveas.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: hr $ $Date: 2007-08-02 17:06:47 $ + * last change: $Author: obo $ $Date: 2008-02-26 14:56:54 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -66,12 +66,17 @@ #include <com/sun/star/frame/XModuleManager.hpp> #endif - #include <comphelper/sequenceashashmap.hxx> + +namespace com { namespace sun { namespace star { + namespace document { + class XDocumentInfo; + } +} } } + class Window; class ModelData_Impl; -class SfxDocumentInfo; class SfxStoringHelper { @@ -110,14 +115,11 @@ public: const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& xFilterCFG, const ::rtl::OUString& aFilterName ); - static void FillCopy( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel, - SfxDocumentInfo& aDocInfoToFill ); - - static void PrepareDocInfoForStore( SfxDocumentInfo& aDocInfoToClear, sal_Bool bUseUserData ); - static void SetDocInfoState( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel, - const SfxDocumentInfo& aDocInfoState, - sal_Bool bNoModify ); + static void SetDocInfoState( + const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel, + const ::com::sun::star::uno::Reference< ::com::sun::star::document::XDocumentInfo>& i_xOldDocInfo, + sal_Bool bNoModify ); static sal_Bool WarnUnacceptableFormat( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel, |