diff options
author | Chamal <e12346@ce.pdn.ac.lk> | 2016-10-14 06:24:56 +0530 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-11-15 09:09:36 +0000 |
commit | 4eb2863e95fb823d205f1ce0da21f7187339e3ff (patch) | |
tree | 75cdb1e391929fa5e552a41cff20d26d2335d786 /sc | |
parent | 47f323d04ca6174f6d9c20061d84d7a7d727cd61 (diff) |
tdf#96099 Reduce no of typedefs used for trivial containers
OStringSet replaced with std::set< OString >
Change-Id: Ifad06cd77c5c4123b85171df866ac10a3bea4705
Reviewed-on: https://gerrit.libreoffice.org/29803
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/pagesettings.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/source/filter/oox/pagesettings.cxx b/sc/source/filter/oox/pagesettings.cxx index b5bd39b5c152..1cfe9451e713 100644 --- a/sc/source/filter/oox/pagesettings.cxx +++ b/sc/source/filter/oox/pagesettings.cxx @@ -425,15 +425,14 @@ private: private: typedef ::std::vector< HFPortionInfo > HFPortionInfoVec; - typedef ::std::set< OString > OStringSet; - + const OUString maPageNumberService; const OUString maPageCountService; const OUString maSheetNameService; const OUString maFileNameService; const OUString maDateTimeService; - const OStringSet maBoldNames; /// All names for bold font style in lowercase UTF-8. - const OStringSet maItalicNames; /// All names for italic font style in lowercase UTF-8. + const std::set< OString > maBoldNames; /// All names for bold font style in lowercase UTF-8. + const std::set< OString > maItalicNames; /// All names for italic font style in lowercase UTF-8. HFPortionInfoVec maPortions; HFPortionId meCurrPortion; /// Identifier of current H/F portion. OUStringBuffer maBuffer; /// Text data to append to current text range. |