Kaydet (Commit) 4eb2863e authored tarafından Chamal's avatar Chamal Kaydeden (comit) jan iversen

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/29803Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarjan iversen <jani@documentfoundation.org>
üst 47f323d0
...@@ -425,15 +425,14 @@ private: ...@@ -425,15 +425,14 @@ private:
private: private:
typedef ::std::vector< HFPortionInfo > HFPortionInfoVec; typedef ::std::vector< HFPortionInfo > HFPortionInfoVec;
typedef ::std::set< OString > OStringSet;
const OUString maPageNumberService; const OUString maPageNumberService;
const OUString maPageCountService; const OUString maPageCountService;
const OUString maSheetNameService; const OUString maSheetNameService;
const OUString maFileNameService; const OUString maFileNameService;
const OUString maDateTimeService; const OUString maDateTimeService;
const OStringSet maBoldNames; /// All names for bold font style in lowercase UTF-8. const std::set< OString > 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 > maItalicNames; /// All names for italic font style in lowercase UTF-8.
HFPortionInfoVec maPortions; HFPortionInfoVec maPortions;
HFPortionId meCurrPortion; /// Identifier of current H/F portion. HFPortionId meCurrPortion; /// Identifier of current H/F portion.
OUStringBuffer maBuffer; /// Text data to append to current text range. OUStringBuffer maBuffer; /// Text data to append to current text range.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment