diff options
author | Eike Rathke <erack@redhat.com> | 2012-04-10 21:03:26 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-04-10 21:04:05 +0200 |
commit | dd6e7fb5b31d9801977e16d853963ddcf0794a27 (patch) | |
tree | 7ad9eda58259f780f777d05b9cca15326b541103 /sc/inc | |
parent | 13a7880bc0dfc1248f1fdc884ca257248bfad2bb (diff) |
sal_Bool to bool
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/filter.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/filter.hxx b/sc/inc/filter.hxx index eb6229d0bfdb..80dace202f68 100644 --- a/sc/inc/filter.hxx +++ b/sc/inc/filter.hxx @@ -88,7 +88,7 @@ class ScEEAbsImport { virtual sal_uLong Read( SvStream& rStream, const String& rBaseURL ) = 0; virtual ScRange GetRange() = 0; virtual void WriteToDocument( - sal_Bool bSizeColsRows = false, double nOutputFactor = 1.0, + bool bSizeColsRows = false, double nOutputFactor = 1.0, SvNumberFormatter* pFormatter = NULL, bool bConvertDate = true ) = 0; }; @@ -107,11 +107,11 @@ class ScFormatFilterPlugin { const CharSet eSrc = RTL_TEXTENCODING_DONTKNOW, sal_uInt32 nDifOption = SC_DIFOPT_EXCEL ) = 0; virtual FltError ScImportRTF( SvStream&, const String& rBaseURL, ScDocument*, ScRange& rRange ) = 0; virtual FltError ScImportHTML( SvStream&, const String& rBaseURL, ScDocument*, ScRange& rRange, double nOutputFactor = 1.0, - sal_Bool bCalcWidthHeight = sal_True, SvNumberFormatter* pFormatter = NULL, bool bConvertDate = true ) = 0; + bool bCalcWidthHeight = true, SvNumberFormatter* pFormatter = NULL, bool bConvertDate = true ) = 0; // various import helpers virtual ScEEAbsImport *CreateRTFImport( ScDocument* pDoc, const ScRange& rRange ) = 0; - virtual ScEEAbsImport *CreateHTMLImport( ScDocument* pDocP, const String& rBaseURL, const ScRange& rRange, sal_Bool bCalcWidthHeight ) = 0; + virtual ScEEAbsImport *CreateHTMLImport( ScDocument* pDocP, const String& rBaseURL, const ScRange& rRange, bool bCalcWidthHeight ) = 0; virtual String GetHTMLRangeNameList( ScDocument* pDoc, const String& rOrigName ) = 0; // various export filters @@ -123,7 +123,7 @@ class ScFormatFilterPlugin { sal_uInt32 nDifOption = SC_DIFOPT_EXCEL ) = 0; virtual FltError ScExportDif( SvStream&, ScDocument*, const ScRange& rRange, const CharSet eDest, sal_uInt32 nDifOption = SC_DIFOPT_EXCEL ) = 0; - virtual FltError ScExportHTML( SvStream&, const String& rBaseURL, ScDocument*, const ScRange& rRange, const CharSet eDest, sal_Bool bAll, + virtual FltError ScExportHTML( SvStream&, const String& rBaseURL, ScDocument*, const ScRange& rRange, const CharSet eDest, bool bAll, const String& rStreamPath, String& rNonConvertibleChars ) = 0; virtual FltError ScExportRTF( SvStream&, ScDocument*, const ScRange& rRange, const CharSet eDest ) = 0; |