summaryrefslogtreecommitdiff
path: root/configmgr/source/childaccess.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/childaccess.hxx
parent90874ab3c75fd161a672a24538cbce909f284e97 (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/childaccess.hxx')
-rw-r--r--configmgr/source/childaccess.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/configmgr/source/childaccess.hxx b/configmgr/source/childaccess.hxx
index b453a6a76b73..ef1444a0a997 100644
--- a/configmgr/source/childaccess.hxx
+++ b/configmgr/source/childaccess.hxx
@@ -60,7 +60,7 @@ public:
ChildAccess(
Components & components, rtl::Reference< RootAccess > const & root,
- rtl::Reference< Access > const & parent, rtl::OUString const & name,
+ rtl::Reference< Access > const & parent, OUString const & name,
rtl::Reference< Node > const & node);
ChildAccess(
@@ -70,12 +70,12 @@ public:
virtual Path getAbsolutePath();
virtual Path getRelativePath();
- virtual rtl::OUString getRelativePathRepresentation();
+ virtual OUString getRelativePathRepresentation();
virtual rtl::Reference< Node > getNode();
virtual bool isFinalized();
- virtual rtl::OUString getNameInternal();
+ virtual OUString getNameInternal();
virtual rtl::Reference< RootAccess > getRootAccess();
virtual rtl::Reference< Access > getParentAccess();
@@ -100,7 +100,7 @@ public:
void bind(
rtl::Reference< RootAccess > const & root,
- rtl::Reference< Access > const & parent, rtl::OUString const & name)
+ rtl::Reference< Access > const & parent, OUString const & name)
throw ();
void unbind() throw ();
@@ -124,15 +124,15 @@ private:
std::vector< com::sun::star::uno::Type > * types) const;
virtual void addSupportedServiceNames(
- std::vector< rtl::OUString > * services);
+ std::vector< OUString > * services);
virtual com::sun::star::uno::Any SAL_CALL queryInterface(
com::sun::star::uno::Type const & aType)
throw (com::sun::star::uno::RuntimeException);
rtl::Reference< RootAccess > root_;
- rtl::Reference< Access > parent_; // null iff free node
- rtl::OUString name_;
+ rtl::Reference< Access > parent_; // null if free node
+ OUString name_;
rtl::Reference< Node > node_;
std::auto_ptr< com::sun::star::uno::Any > changedValue_;
bool inTransaction_;