summaryrefslogtreecommitdiff
path: root/ucb/source/cacher/contentresultsetwrapper.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-02-21 15:48:08 +0200
committerTor Lillqvist <tlillqvist@novell.com>2011-02-21 16:21:18 +0200
commitafd26e766a59d131d59c5e80356c9982bdc03845 (patch)
tree6baf44324703f35f9fdaee9865992e631c8ee63c /ucb/source/cacher/contentresultsetwrapper.cxx
parent0e19891c94ed10ec2313650a693a4e091cb6bc82 (diff)
Remove 'using namespace rtl'
The ambiguity of 'Reference' causes compilation errors when using precompiled headers. Instead use 'using ::rtl::OUString' and 'using ::rtl::OUStringBuffer'.
Diffstat (limited to 'ucb/source/cacher/contentresultsetwrapper.cxx')
-rw-r--r--ucb/source/cacher/contentresultsetwrapper.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/ucb/source/cacher/contentresultsetwrapper.cxx b/ucb/source/cacher/contentresultsetwrapper.cxx
index 6b7d714b6936..60a824c8351c 100644
--- a/ucb/source/cacher/contentresultsetwrapper.cxx
+++ b/ucb/source/cacher/contentresultsetwrapper.cxx
@@ -45,7 +45,8 @@ using namespace com::sun::star::ucb;
using namespace com::sun::star::uno;
using namespace com::sun::star::util;
using namespace cppu;
-using namespace rtl;
+
+using ::rtl::OUString;
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
@@ -320,7 +321,7 @@ sal_Bool SAL_CALL ContentResultSetWrapper
}
aGuard.reacquire();
- rtl::OUString aName(RTL_CONSTASCII_USTRINGPARAM("ResultSetType"));
+ OUString aName(RTL_CONSTASCII_USTRINGPARAM("ResultSetType"));
//find out, if we are ForwardOnly and cache the value:
impl_init_xPropertySetOrigin();
@@ -1216,7 +1217,7 @@ sal_Bool SAL_CALL ContentResultSetWrapper
}
//virtual
-rtl::OUString SAL_CALL ContentResultSetWrapper
+OUString SAL_CALL ContentResultSetWrapper
::getString( sal_Int32 columnIndex )
throw( SQLException,
RuntimeException )