From f42e17d83b5c4f5343c8b113ef2d8dcbf96f8a20 Mon Sep 17 00:00:00 2001 From: Christina Rossmanith Date: Mon, 2 Jan 2012 21:56:19 +0100 Subject: Replace (Byte)String with rtl::O(U)String --- vcl/unx/generic/printer/ppdparser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl/unx/generic') 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 ) -- cgit