From 903fa82bbd6c48b47e516a84af2e58014c50e933 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 11 Feb 2014 15:50:16 +0200 Subject: sal_Bool->bool Change-Id: I1a0f907d0616c5177a8e318193f01bc3febcfdbe --- sc/inc/filtopt.hxx | 4 ++-- 1 file 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& 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; } -- cgit