summaryrefslogtreecommitdiffstats
path: root/sc/inc/printopt.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 11:04:49 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:02 +0200
commit63a9dcac52463eb7288fbdb5b3dbe30615fd40e8 (patch)
tree897da48c153b357817600bb79af520458e5996d4 /sc/inc/printopt.hxx
parentsal_Bool->bool (diff)
downloadcore-63a9dcac52463eb7288fbdb5b3dbe30615fd40e8.tar.gz
core-63a9dcac52463eb7288fbdb5b3dbe30615fd40e8.zip
sal_Bool->bool
Change-Id: Ib212996d8eb1461f32bf99d1fcd4e33be6cd3fce
Diffstat (limited to 'sc/inc/printopt.hxx')
-rw-r--r--sc/inc/printopt.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/inc/printopt.hxx b/sc/inc/printopt.hxx
index 99e96a623154..af15c42ff84a 100644
--- a/sc/inc/printopt.hxx
+++ b/sc/inc/printopt.hxx
@@ -27,21 +27,21 @@
class SC_DLLPUBLIC ScPrintOptions
{
private:
- sal_Bool bSkipEmpty;
- sal_Bool bAllSheets;
- sal_Bool bForceBreaks;
+ bool bSkipEmpty;
+ bool bAllSheets;
+ bool bForceBreaks;
public:
ScPrintOptions();
ScPrintOptions( const ScPrintOptions& rCpy );
~ScPrintOptions();
- sal_Bool GetSkipEmpty() const { return bSkipEmpty; }
- void SetSkipEmpty( sal_Bool bVal ) { bSkipEmpty = bVal; }
- sal_Bool GetAllSheets() const { return bAllSheets; }
- void SetAllSheets( sal_Bool bVal ) { bAllSheets = bVal; }
+ bool GetSkipEmpty() const { return bSkipEmpty; }
+ void SetSkipEmpty( bool bVal ) { bSkipEmpty = bVal; }
+ bool GetAllSheets() const { return bAllSheets; }
+ void SetAllSheets( bool bVal ) { bAllSheets = bVal; }
bool GetForceBreaks() const { return bForceBreaks; }
- void SetForceBreaks( sal_Bool bVal ) { bForceBreaks = bVal; }
+ void SetForceBreaks( bool bVal ) { bForceBreaks = bVal; }
void SetDefaults();