summaryrefslogtreecommitdiff
path: root/extensions/test/ole/cpnt
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/ole/cpnt
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
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/ole/cpnt')
-rw-r--r--extensions/test/ole/cpnt/cpnt.cxx9
1 files changed, 4 insertions, 5 deletions
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;
}