summaryrefslogtreecommitdiffstats
path: root/vcl/headless
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/headless
parenttry and get callcatcher working again (diff)
downloadcore-f42e17d83b5c4f5343c8b113ef2d8dcbf96f8a20.tar.gz
core-f42e17d83b5c4f5343c8b113ef2d8dcbf96f8a20.zip
Replace (Byte)String with rtl::O(U)String
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpprn.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/headless/svpprn.cxx b/vcl/headless/svpprn.cxx
index b7e4dbb1b388..eca65e34fdce 100644
--- a/vcl/headless/svpprn.cxx
+++ b/vcl/headless/svpprn.cxx
@@ -78,7 +78,7 @@ static void copyJobDataToJobSetup( ImplJobSetup* pJobSetup, JobData& rData )
pJobSetup->meOrientation = (Orientation)(rData.m_eOrientation == orientation::Landscape ? ORIENTATION_LANDSCAPE : ORIENTATION_PORTRAIT);
// copy page size
- String aPaper;
+ OUString aPaper;
int width, height;
rData.m_aContext.getPageSize( aPaper, width, height );