summaryrefslogtreecommitdiff
path: root/configmgr/source/xcuparser.hxx
diff options
context:
space:
mode:
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_;
};