diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/filtopt.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/filtopt.hxx b/sc/inc/filtopt.hxx index 20adaff1ccf7..68495e6260e9 100644 --- a/sc/inc/filtopt.hxx +++ b/sc/inc/filtopt.hxx @@ -28,7 +28,7 @@ class SC_DLLPUBLIC ScFilterOptions : public utl::ConfigItem { - sal_Bool bWK3Flag; + bool bWK3Flag; double fExcelColScale; double fExcelRowScale; @@ -40,7 +40,7 @@ public: virtual void Notify( const com::sun::star::uno::Sequence<OUString>& aPropertyNames ); virtual void Commit(); - sal_Bool GetWK3Flag() const { return bWK3Flag; } + bool GetWK3Flag() const { return bWK3Flag; } double GetExcelColScale() const { return fExcelColScale; } double GetExcelRowScale() const { return fExcelRowScale; } |