summaryrefslogtreecommitdiff
path: root/forms/source/component/cachedrowset.cxx
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 /forms/source/component/cachedrowset.cxx
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 'forms/source/component/cachedrowset.cxx')
-rw-r--r--forms/source/component/cachedrowset.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/cachedrowset.cxx b/forms/source/component/cachedrowset.cxx
index ce410092155f..4a2792bdf121 100644
--- a/forms/source/component/cachedrowset.cxx
+++ b/forms/source/component/cachedrowset.cxx
@@ -59,7 +59,7 @@ namespace frm
struct CachedRowSet_Data
{
::comphelper::ComponentContext aContext;
- ::rtl::OUString sCommand;
+ OUString sCommand;
sal_Bool bEscapeProcessing;
Reference< XConnection > xConnection;
@@ -91,7 +91,7 @@ namespace frm
}
//--------------------------------------------------------------------
- void CachedRowSet::setCommand( const ::rtl::OUString& _rCommand )
+ void CachedRowSet::setCommand( const OUString& _rCommand )
{
if ( m_pData->sCommand == _rCommand )
return;
@@ -101,7 +101,7 @@ namespace frm
}
//--------------------------------------------------------------------
- void CachedRowSet::setCommandFromQuery( const ::rtl::OUString& _rQueryName )
+ void CachedRowSet::setCommandFromQuery( const OUString& _rQueryName )
{
Reference< XQueriesSupplier > xSupplyQueries( m_pData->xConnection, UNO_QUERY_THROW );
Reference< XNameAccess > xQueries ( xSupplyQueries->getQueries(), UNO_QUERY_THROW );
@@ -111,7 +111,7 @@ namespace frm
OSL_VERIFY( xQuery->getPropertyValue( PROPERTY_ESCAPE_PROCESSING ) >>= bEscapeProcessing );
setEscapeProcessing( bEscapeProcessing );
- ::rtl::OUString sCommand;
+ OUString sCommand;
OSL_VERIFY( xQuery->getPropertyValue( PROPERTY_COMMAND ) >>= sCommand );
setCommand( sCommand );
}