diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:40:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:39 +0100 |
commit | 05575c31e1f962636125ff8c42c3e2409a9edb6c (patch) | |
tree | 0fa44d2899f95ae21676ee51a57eb34b38e965e0 /xmloff/source/text/XMLTextNumRuleInfo.hxx | |
parent | fb4fec646d20388539c8d294f3e2bc20d0903a2b (diff) |
xmloff: Use appropriate OUString functions on string constants
Change-Id: I349e0c2575d9a5154ac7002d129a1851a3df7687
Diffstat (limited to 'xmloff/source/text/XMLTextNumRuleInfo.hxx')
-rw-r--r-- | xmloff/source/text/XMLTextNumRuleInfo.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/XMLTextNumRuleInfo.hxx b/xmloff/source/text/XMLTextNumRuleInfo.hxx index bfe02f97d44c..8ca93af9d6f4 100644 --- a/xmloff/source/text/XMLTextNumRuleInfo.hxx +++ b/xmloff/source/text/XMLTextNumRuleInfo.hxx @@ -163,15 +163,15 @@ inline XMLTextNumRuleInfo& XMLTextNumRuleInfo::operator=( inline void XMLTextNumRuleInfo::Reset() { mxNumRules = 0; - msNumRulesName = ""; - msListId = ""; + msNumRulesName.clear(); + msListId.clear(); mnListStartValue = -1; mnListLevel = 0; // Written OpenDocument file format doesn't fit to the created text document (#i69627#) mbIsNumbered = mbIsRestart = mbOutlineStyleAsNormalListStyle = false; mbContinueingPreviousSubTree = false; - msListLabelString = ""; + msListLabelString.clear(); } #endif // INCLUDED_XMLOFF_SOURCE_TEXT_XMLTEXTNUMRULEINFO_HXX |