summaryrefslogtreecommitdiff
path: root/padmin
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-07 08:43:59 +0200
committerNoel Grandin <noel@peralex.com>2013-08-12 11:56:41 +0200
commit556fe4ec7339892d63cb98bc9bfd09718944bf03 (patch)
treef4fe7f8e4ee1bb2f31f77c021e6e50209219616c /padmin
parentff7ac85d4b657da2cd28b878325fd7c290b5c63b (diff)
convert vcl/ppdparser.hxx from String to OUString
Change-Id: I8a95a98e5cc92e5bedb4813411afc86cc438fdad
Diffstat (limited to 'padmin')
-rw-r--r--padmin/source/padialog.cxx2
-rw-r--r--padmin/source/prtsetup.cxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/padmin/source/padialog.cxx b/padmin/source/padialog.cxx
index 5bf769a5d48c..9327d1eed1dd 100644
--- a/padmin/source/padialog.cxx
+++ b/padmin/source/padialog.cxx
@@ -455,7 +455,7 @@ void SpaPrinterController::printPage( int ) const
if( pPrintParser )
aPrintText.append( pPrintParser->getPrinterName() );
aPrintText.appendAscii( "\n: " );
- INetURLObject aDriverPath( pPrintParser ? pPrintParser->getFilename() : String( "<undef>" ),
+ INetURLObject aDriverPath( pPrintParser ? pPrintParser->getFilename() : OUString( "<undef>" ),
INET_PROT_FILE, INetURLObject::ENCODE_ALL );
aPrintText.append( aDriverPath.GetName() );
aPrintText.appendAscii( "\n: " );
diff --git a/padmin/source/prtsetup.cxx b/padmin/source/prtsetup.cxx
index 5ee49581c1da..c82a2375c915 100644
--- a/padmin/source/prtsetup.cxx
+++ b/padmin/source/prtsetup.cxx
@@ -389,10 +389,10 @@ RTSDevicePage::RTSDevicePage( RTSDialog* pParent )
{
const PPDKey* pKey = m_pParent->m_aJobData.m_pParser->getKey( i );
if( pKey->isUIKey() &&
- ! pKey->getKey().EqualsAscii( "PageSize" ) &&
- ! pKey->getKey().EqualsAscii( "InputSlot" ) &&
- ! pKey->getKey().EqualsAscii( "PageRegion" ) &&
- ! pKey->getKey().EqualsAscii( "Duplex" )
+ ! pKey->getKey().equalsAscii( "PageSize" ) &&
+ ! pKey->getKey().equalsAscii( "InputSlot" ) &&
+ ! pKey->getKey().equalsAscii( "PageRegion" ) &&
+ ! pKey->getKey().equalsAscii( "Duplex" )
)
{
String aEntry( m_pParent->m_aJobData.m_pParser->translateKey( pKey->getKey() ) );