summaryrefslogtreecommitdiffstats
path: root/extensions/test
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /extensions/test
parentTypo in comment in resmgr.hxx (diff)
downloadcore-1946794ae09ba732022fe6a74ea45e304ab70b84.tar.gz
core-1946794ae09ba732022fe6a74ea45e304ab70b84.zip
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'extensions/test')
-rw-r--r--extensions/test/ole/OleClient/clientTest.cxx1
-rw-r--r--extensions/test/ole/OleClient/funcs.cxx1
-rw-r--r--extensions/test/ole/OleConverterVar1/convTest.cxx1
-rw-r--r--extensions/test/ole/cpnt/cpnt.cxx9
4 files changed, 4 insertions, 8 deletions
diff --git a/extensions/test/ole/OleClient/clientTest.cxx b/extensions/test/ole/OleClient/clientTest.cxx
index 6aca362f9c65..b37b2fa50480 100644
--- a/extensions/test/ole/OleClient/clientTest.cxx
+++ b/extensions/test/ole/OleClient/clientTest.cxx
@@ -49,7 +49,6 @@ using namespace com::sun::star::script;
using namespace com::sun::star::bridge::oleautomation;
using namespace cppu;
-using ::rtl::OUString;
Reference<XInvocation> convertComObject( IUnknown* pUnk);
Reference<XInvocation> getComObject( OUString progId);
diff --git a/extensions/test/ole/OleClient/funcs.cxx b/extensions/test/ole/OleClient/funcs.cxx
index 674089637652..11b61de1c54a 100644
--- a/extensions/test/ole/OleClient/funcs.cxx
+++ b/extensions/test/ole/OleClient/funcs.cxx
@@ -41,7 +41,6 @@ using namespace com::sun::star::script;
using namespace com::sun::star::bridge::oleautomation;
using namespace cppu;
-using ::rtl::OUString;
template< class T >
bool equalSequences(const Sequence<T>& seqIn, const Sequence<Any> & returned);
diff --git a/extensions/test/ole/OleConverterVar1/convTest.cxx b/extensions/test/ole/OleConverterVar1/convTest.cxx
index 70a34a32b40b..4e2da554917f 100644
--- a/extensions/test/ole/OleConverterVar1/convTest.cxx
+++ b/extensions/test/ole/OleConverterVar1/convTest.cxx
@@ -53,7 +53,6 @@ using namespace com::sun::star::uno;
using namespace oletest;
using namespace cppu;
-using ::rtl::OUString;
HRESULT doTest();
HRESULT InitializeParameter();
diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx
index 9d7a0ce5f922..ae4604b42e6c 100644
--- a/extensions/test/ole/cpnt/cpnt.cxx
+++ b/extensions/test/ole/cpnt/cpnt.cxx
@@ -60,7 +60,6 @@ using namespace com::sun::star::registry;
using namespace com::sun::star::script;
using namespace com::sun::star::reflection;
-using ::rtl::OUString;
#define IMPL_NAME L"oletest.OleTestImpl" // oletest.OleTestImpl in applicat.rdb
@@ -197,8 +196,8 @@ public: // XTestSequence
virtual void SAL_CALL setALong( ::sal_Int32 _along ) throw (RuntimeException);
virtual ::sal_uInt32 SAL_CALL getAULong() throw (RuntimeException);
virtual void SAL_CALL setAULong( ::sal_uInt32 _aulong ) throw (RuntimeException);
- virtual ::rtl::OUString SAL_CALL getAString() throw (RuntimeException);
- virtual void SAL_CALL setAString( const ::rtl::OUString& _astring ) throw (RuntimeException);
+ virtual OUString SAL_CALL getAString() throw (RuntimeException);
+ virtual void SAL_CALL setAString( const OUString& _astring ) throw (RuntimeException);
virtual ::sal_Unicode SAL_CALL getAChar() throw (RuntimeException);
virtual void SAL_CALL setAChar( ::sal_Unicode _achar ) throw (RuntimeException);
virtual Any SAL_CALL getAAny() throw (RuntimeException);
@@ -794,12 +793,12 @@ void SAL_CALL OComponent::setAULong( ::sal_uInt32 _aulong ) throw (RuntimeExcept
m_attr_uint32 = _aulong;
}
-::rtl::OUString SAL_CALL OComponent::getAString() throw (RuntimeException)
+OUString SAL_CALL OComponent::getAString() throw (RuntimeException)
{
return m_attr_string;
}
-void SAL_CALL OComponent::setAString( const ::rtl::OUString& _astring ) throw (RuntimeException)
+void SAL_CALL OComponent::setAString( const OUString& _astring ) throw (RuntimeException)
{
m_attr_string = _astring;
}