Kaydet (Commit) 63a9dcac authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: Ib212996d8eb1461f32bf99d1fcd4e33be6cd3fce
üst 11cea9af
...@@ -27,21 +27,21 @@ ...@@ -27,21 +27,21 @@
class SC_DLLPUBLIC ScPrintOptions class SC_DLLPUBLIC ScPrintOptions
{ {
private: private:
sal_Bool bSkipEmpty; bool bSkipEmpty;
sal_Bool bAllSheets; bool bAllSheets;
sal_Bool bForceBreaks; bool bForceBreaks;
public: public:
ScPrintOptions(); ScPrintOptions();
ScPrintOptions( const ScPrintOptions& rCpy ); ScPrintOptions( const ScPrintOptions& rCpy );
~ScPrintOptions(); ~ScPrintOptions();
sal_Bool GetSkipEmpty() const { return bSkipEmpty; } bool GetSkipEmpty() const { return bSkipEmpty; }
void SetSkipEmpty( sal_Bool bVal ) { bSkipEmpty = bVal; } void SetSkipEmpty( bool bVal ) { bSkipEmpty = bVal; }
sal_Bool GetAllSheets() const { return bAllSheets; } bool GetAllSheets() const { return bAllSheets; }
void SetAllSheets( sal_Bool bVal ) { bAllSheets = bVal; } void SetAllSheets( bool bVal ) { bAllSheets = bVal; }
bool GetForceBreaks() const { return bForceBreaks; } bool GetForceBreaks() const { return bForceBreaks; }
void SetForceBreaks( sal_Bool bVal ) { bForceBreaks = bVal; } void SetForceBreaks( bool bVal ) { bForceBreaks = bVal; }
void SetDefaults(); void SetDefaults();
......
...@@ -46,7 +46,7 @@ ScPrintOptions::~ScPrintOptions() ...@@ -46,7 +46,7 @@ ScPrintOptions::~ScPrintOptions()
void ScPrintOptions::SetDefaults() void ScPrintOptions::SetDefaults()
{ {
bSkipEmpty = sal_True; bSkipEmpty = true;
bAllSheets = false; bAllSheets = false;
bForceBreaks = false; bForceBreaks = false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment