summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-11 15:50:16 +0200
committerNoel Grandin <noel@peralex.com>2014-02-12 09:01:10 +0200
commit903fa82bbd6c48b47e516a84af2e58014c50e933 (patch)
treece2602e0b8b1305b70ff9bb313f7681ad5dd9cf6 /sc
parent615ad147fdbd3fafa8a4bf2f901de9411d7defb5 (diff)
sal_Bool->bool
Change-Id: I1a0f907d0616c5177a8e318193f01bc3febcfdbe
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/filtopt.hxx4
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; }