summaryrefslogtreecommitdiff
path: root/vcl/unx/generic
diff options
context:
space:
mode:
authorChristina Rossmanith <ChrRossmanith@web.de>2012-01-02 21:56:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-01-05 11:12:57 +0000
commitf42e17d83b5c4f5343c8b113ef2d8dcbf96f8a20 (patch)
tree125f7dae7d15fddf7108157e4cb4a75528d037ff /vcl/unx/generic
parent2e70dc68e65789da7f4a8af6b5a22f9921245c00 (diff)
Replace (Byte)String with rtl::O(U)String
Diffstat (limited to 'vcl/unx/generic')
-rw-r--r--vcl/unx/generic/printer/ppdparser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx
index 738df2dbdd2d..a34d9c99c043 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -1969,10 +1969,10 @@ int PPDContext::getRenderResolution() const
// -------------------------------------------------------------------
-void PPDContext::getPageSize( String& rPaper, int& rWidth, int& rHeight ) const
+void PPDContext::getPageSize( rtl::OUString& rPaper, int& rWidth, int& rHeight ) const
{
// initialize to reasonable default, if parser is not set
- rPaper = String( RTL_CONSTASCII_USTRINGPARAM( "A4" ) );
+ rPaper = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "A4" ) );
rWidth = 595;
rHeight = 842;
if( m_pParser )