summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-05-14 15:12:45 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-05-14 20:17:15 +0900
commit9adf9a2d63927ef3e3573ce062bb741659534422 (patch)
tree0c9a7f812d48d4420f4ec129f10e918c8d060b4a /vcl
parent1136925b2377925e4f6b83c4aeb2374e1d5bf32f (diff)
sal_Int*/sal_uInt* to bool
Change-Id: I133445673895e26d6f19a7843f005dc13870f9ca
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index 20e6a5b8474e..937eb8467811 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -4622,7 +4622,7 @@ we check in the following sequence:
{
if( m_aContext.ConvertOOoTargetToPDFTarget )
{
- sal_Int32 bChangeFileExtensionToPDF = false;
+ bool bChangeFileExtensionToPDF = false;
//examine the file type (.odm .odt. .odp, odg, ods)
if( aFileExtension.equalsIgnoreAsciiCase(OUString( "odm" ) ) )
bChangeFileExtensionToPDF = true;