diff options
author | Brad Sowden <code@sowden.org> | 2011-12-29 22:26:06 +1300 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-01-03 18:02:55 +0100 |
commit | 9e192c9fd1c0ddc0cd9b926a46f4144f1bf71526 (patch) | |
tree | c7e36927e64c9052ee283e443a44c38c716e650f /sw/inc | |
parent | 8172646815db38744d8ba0dfd959b1afc089fb40 (diff) |
Easyhack fdo#38831 remove SvStrings
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/SwXMLSectionList.hxx | 6 | ||||
-rw-r--r-- | sw/inc/shellio.hxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/SwXMLSectionList.hxx b/sw/inc/SwXMLSectionList.hxx index 046786473813..c59fda7120d0 100644 --- a/sw/inc/SwXMLSectionList.hxx +++ b/sw/inc/SwXMLSectionList.hxx @@ -31,7 +31,7 @@ #include <xmloff/xmlictxt.hxx> #include <xmloff/xmlimp.hxx> -class SvStrings; +class vector; class SwXMLSectionList : public SvXMLImport { @@ -43,11 +43,11 @@ protected: const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > & xAttrList ); public: - SvStrings & rSectionList; + std::vector<String*> &rSectionList; SwXMLSectionList( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory, - SvStrings & rNewSectionList ); + std::vector<String*> &rNewSectionList ); virtual ~SwXMLSectionList ( ) throw(); diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx index 56cd0635f4f6..0b9180479ff0 100644 --- a/sw/inc/shellio.hxx +++ b/sw/inc/shellio.hxx @@ -56,7 +56,6 @@ class SfxItemSet; class SfxMedium; class SvPtrarr; class SvStream; -class SvStrings; class SvxFontItem; class SvxMacroTableDtor; class SwCntntNode; @@ -64,6 +63,7 @@ class SwCrsrShell; class SwDoc; class SwPaM; class SwTextBlocks; +class vector; struct SwPosition; struct Writer_Impl; @@ -272,8 +272,8 @@ public: // Read the sections of the document, which is equal to the medium. // Returns the count of it - virtual sal_uInt16 GetSectionList( SfxMedium& rMedium, - SvStrings& rStrings ) const; + virtual size_t GetSectionList( SfxMedium& rMedium, + std::vector<String*>& rStrings ) const; SotStorageRef getSotStorageRef() { return pStg; }; void setSotStorageRef(SotStorageRef pStgRef) { pStg = pStgRef; }; |