summaryrefslogtreecommitdiffstats
path: root/configmgr/source/xcuparser.hxx
diff options
context:
space:
mode:
authorRadu Ioan <ioan.radu.g@gmail.com>2012-12-10 23:06:10 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-12-11 12:08:38 +0000
commit3e64874e7cd234ff563ac11450cfb2b6e2db4bf6 (patch)
tree5fd298e750ac28fabc3a7179d7af492c13113e01 /configmgr/source/xcuparser.hxx
parentdo not trigger liblangtag init during startup (diff)
downloadcore-3e64874e7cd234ff563ac11450cfb2b6e2db4bf6.tar.gz
core-3e64874e7cd234ff563ac11450cfb2b6e2db4bf6.zip
rtl:: prefix removal from configmgr
- removed rtl:: prefix - removed RTL_CONSTASCII_USTRINGPARAM - corrected some misspells Change-Id: I88bb0beec718a7fe38c61220aa61401419f23b42 Reviewed-on: https://gerrit.libreoffice.org/1291 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'configmgr/source/xcuparser.hxx')
-rw-r--r--configmgr/source/xcuparser.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/configmgr/source/xcuparser.hxx b/configmgr/source/xcuparser.hxx
index 1b9f318b458c..7756626594b3 100644
--- a/configmgr/source/xcuparser.hxx
+++ b/configmgr/source/xcuparser.hxx
@@ -87,17 +87,17 @@ private:
void handleUnknownGroupProp(
xmlreader::XmlReader const & reader, GroupNode * group,
- rtl::OUString const & name, Type type, Operation operation,
+ OUString const & name, Type type, Operation operation,
bool finalized);
void handlePlainGroupProp(
xmlreader::XmlReader const & reader, GroupNode * group,
- NodeMap::iterator const & propertyIndex, rtl::OUString const & name,
+ NodeMap::iterator const & propertyIndex, OUString const & name,
Type type, Operation operation, bool finalized);
void handleLocalizedGroupProp(
xmlreader::XmlReader const & reader, LocalizedPropertyNode * property,
- rtl::OUString const & name, Type type, Operation operation,
+ OUString const & name, Type type, Operation operation,
bool finalized);
void handleGroupNode(
@@ -108,8 +108,8 @@ private:
void recordModification(bool addition);
struct State {
- rtl::Reference< Node > node; // empty iff ignore or <items>
- rtl::OUString name; // empty and ignored if !insert
+ rtl::Reference< Node > node; // empty if ignore or <items>
+ OUString name; // empty and ignored if !insert
bool ignore;
bool insert;
bool locked;
@@ -126,7 +126,7 @@ private:
inline State(
rtl::Reference< Node > const & theNode,
- rtl::OUString const & theName, bool theLocked):
+ OUString const & theName, bool theLocked):
node(theNode), name(theName), ignore(false), insert(true),
locked(theLocked), pop(true)
{}
@@ -141,7 +141,7 @@ private:
Additions * additions_;
bool recordModifications_;
bool trackPath_;
- rtl::OUString componentName_;
+ OUString componentName_;
StateStack state_;
Path path_;
};