summaryrefslogtreecommitdiff
path: root/vcl/generic
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-06-18 11:22:11 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-06-18 11:27:35 +0900
commit3c517e8a6c7be101b35bcad3885439434574dabc (patch)
tree081c0f9a7c61afa1b9ba58e73165d6e5d7599725 /vcl/generic
parenta48f46cf8dfaaaa67011fab91582187dbd03de59 (diff)
sal_Bool to bool
Change-Id: Id1c64ab4be262713204cfeeb6333ec7d33fffcfb
Diffstat (limited to 'vcl/generic')
-rw-r--r--vcl/generic/print/printerjob.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/generic/print/printerjob.cxx b/vcl/generic/print/printerjob.cxx
index 5d61ff90a9bf..04c1739e601d 100644
--- a/vcl/generic/print/printerjob.cxx
+++ b/vcl/generic/print/printerjob.cxx
@@ -335,7 +335,7 @@ PrinterJob::StartJob (
OUString aFilterWS;
// Creator (this application)
- aFilterWS = WhitespaceToSpace( rAppName, sal_False );
+ aFilterWS = WhitespaceToSpace( rAppName, false );
WritePS (mpJobHeader, "%%Creator: (");
WritePS (mpJobHeader, aFilterWS);
WritePS (mpJobHeader, ")\n");
@@ -364,14 +364,14 @@ PrinterJob::StartJob (
* use the filename, if it contains only ascii
* else omit %%Title
*/
- aFilterWS = WhitespaceToSpace( rJobName, sal_False );
+ aFilterWS = WhitespaceToSpace( rJobName, false );
OUString aTitle( aFilterWS );
if( ! isAscii( aTitle ) )
{
sal_Int32 nIndex = 0;
while( nIndex != -1 )
aTitle = rFileName.getToken( 0, '/', nIndex );
- aTitle = WhitespaceToSpace( aTitle, sal_False );
+ aTitle = WhitespaceToSpace( aTitle, false );
if( ! isAscii( aTitle ) )
aTitle = OUString();
}