diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-23 00:34:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-23 09:08:07 +0100 |
commit | 124a30f47b1fea9921f5b901f22bacc536a53ce0 (patch) | |
tree | 922a579689cb5b9fbc469b247f246284e132a4f5 /svl | |
parent | 4e7325d751bba2333453a82e171d18c3245b976c (diff) |
anonymous namespaces work fine now
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/misc/urihelper.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/svl/source/misc/urihelper.cxx b/svl/source/misc/urihelper.cxx index ac70f8a6e467..541892b9dfe5 100644 --- a/svl/source/misc/urihelper.cxx +++ b/svl/source/misc/urihelper.cxx @@ -65,10 +65,6 @@ #include <unotools/charclass.hxx> #include "rtl/instance.hxx" -namespace unnamed_svl_urihelper {} -using namespace unnamed_svl_urihelper; - // unnamed namespaces don't work well yet... - namespace css = com::sun::star; using namespace com::sun::star; @@ -78,7 +74,7 @@ using namespace com::sun::star; // //============================================================================ -namespace unnamed_svl_urihelper { +namespace { inline UniString toUniString(ByteString const & rString) { @@ -422,7 +418,7 @@ rtl::OUString URIHelper::simpleNormalizedMakeRelative( // //============================================================================ -namespace unnamed_svl_urihelper { +namespace { inline xub_StrLen nextChar(UniString const & rStr, xub_StrLen nPos) { |