diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 12:06:47 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 14:23:11 +0200 |
commit | 1946794ae09ba732022fe6a74ea45e304ab70b84 (patch) | |
tree | e32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /padmin/source/padialog.cxx | |
parent | 5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (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 'padmin/source/padialog.cxx')
-rw-r--r-- | padmin/source/padialog.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/padmin/source/padialog.cxx b/padmin/source/padialog.cxx index fc04a2c1e67b..c6adfc93f779 100644 --- a/padmin/source/padialog.cxx +++ b/padmin/source/padialog.cxx @@ -60,8 +60,6 @@ using namespace com::sun::star; using namespace com::sun::star::uno; using namespace com::sun::star::beans; -using ::rtl::OUString; -using ::rtl::OUStringBuffer; PADialog* PADialog::Create( Window* pParent, sal_Bool bAdmin ) { @@ -435,7 +433,7 @@ void SpaPrinterController::printPage( int ) const for( unsigned int i = 0; i < SAL_N_ELEMENTS(aResIds); i++ ) { if( aResIds[i].pDirect ) - aToken = rtl::OUString::createFromAscii(aResIds[i].pDirect); + aToken = OUString::createFromAscii(aResIds[i].pDirect); else aToken = String( PaResId( aResIds[i].nResId ) ); nMaxWidth = ( nWidth = pPrinter->GetTextWidth( aToken ) ) > nMaxWidth ? nWidth : nMaxWidth; @@ -564,7 +562,7 @@ void SpaPrinterController::jobFinished( com::sun::star::view::PrintableState ) void PADialog::PrintTestPage() { - const rtl::OUString sPrinter( getSelectedDevice() ); + const OUString sPrinter( getSelectedDevice() ); boost::shared_ptr<Printer> pPrinter( new Printer( sPrinter ) ); |