diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-11-08 13:25:47 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-11-08 15:46:48 +0100 |
commit | c5a7928fb56b9b5d73f7527a8248a28af4895167 (patch) | |
tree | 60a4b0485556cf4e7b6bf2e87a2b65ccd606146d | |
parent | 9b10373edae490d2b9b7f8d733c59b4f63927bec (diff) |
warning C4805 unsafe mix of type sal_Bool and type bool
Change-Id: I00064edb5105ede4bdf6a0cdec4bab00cdd52331
-rw-r--r-- | sc/inc/printopt.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/printopt.hxx b/sc/inc/printopt.hxx index ff1fd674d2fa..83710bd0ea7e 100644 --- a/sc/inc/printopt.hxx +++ b/sc/inc/printopt.hxx @@ -40,7 +40,7 @@ public: void SetSkipEmpty( sal_Bool bVal ) { bSkipEmpty = bVal; } sal_Bool GetAllSheets() const { return bAllSheets; } void SetAllSheets( sal_Bool bVal ) { bAllSheets = bVal; } - sal_Bool GetForceBreaks() const { return bForceBreaks; } + bool GetForceBreaks() const { return bForceBreaks; } void SetForceBreaks( sal_Bool bVal ) { bForceBreaks = bVal; } void SetDefaults(); |