diff options
author | Radu Ioan <ioan.radu.g@gmail.com> | 2012-12-10 23:06:10 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 12:08:38 +0000 |
commit | 3e64874e7cd234ff563ac11450cfb2b6e2db4bf6 (patch) | |
tree | 5fd298e750ac28fabc3a7179d7af492c13113e01 /configmgr/source/propertynode.cxx | |
parent | 90874ab3c75fd161a672a24538cbce909f284e97 (diff) |
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/propertynode.cxx')
-rw-r--r-- | configmgr/source/propertynode.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/propertynode.cxx b/configmgr/source/propertynode.cxx index 4ef895bb5dcb..0427bc9c4968 100644 --- a/configmgr/source/propertynode.cxx +++ b/configmgr/source/propertynode.cxx @@ -61,7 +61,7 @@ css::uno::Any PropertyNode::getValue(Components & components) { if (val.IsPresent) { value_ = val.Value; //TODO: check value type } - externalDescriptor_ = rtl::OUString(); // must not throw + externalDescriptor_ = OUString(); // must not throw } SAL_WARN_IF( !(value_.hasValue() || nillable_), "configmgr", @@ -72,10 +72,10 @@ css::uno::Any PropertyNode::getValue(Components & components) { void PropertyNode::setValue(int layer, css::uno::Any const & value) { setLayer(layer); value_ = value; - externalDescriptor_ = rtl::OUString(); + externalDescriptor_ = OUString(); } -void PropertyNode::setExternal(int layer, rtl::OUString const & descriptor) { +void PropertyNode::setExternal(int layer, OUString const & descriptor) { assert(!descriptor.isEmpty()); setLayer(layer); externalDescriptor_ = descriptor; |