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

sal_Bool->bool

Change-Id: Ib212996d8eb1461f32bf99d1fcd4e33be6cd3fce
üst 11cea9af
......@@ -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();
......
......@@ -46,7 +46,7 @@ ScPrintOptions::~ScPrintOptions()
void ScPrintOptions::SetDefaults()
{
bSkipEmpty = sal_True;
bSkipEmpty = true;
bAllSheets = 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