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/path.hxx | |
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/path.hxx')
-rw-r--r-- | configmgr/source/path.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configmgr/source/path.hxx b/configmgr/source/path.hxx index ddfc7759e7b2..00e3393bf015 100644 --- a/configmgr/source/path.hxx +++ b/configmgr/source/path.hxx @@ -24,11 +24,10 @@ #include <vector> -namespace rtl { class OUString; } namespace configmgr { -typedef std::vector< rtl::OUString > Path; +typedef std::vector< OUString > Path; } |