diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-12 10:38:01 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-14 14:15:01 +0200 |
commit | 2928c88f6e27cdcaf8d524999c12da671e5d5874 (patch) | |
tree | ccc93402e3c6d6bf5e8004158cd149d5c0ad54c3 /sc/inc/optutil.hxx | |
parent | 335b96583b25e5af6f07151691ea538489bbf519 (diff) |
sal_Bool->bool
Change-Id: I4f9045f0ea41afd140621aa438b1d08a3408bcdb
Diffstat (limited to 'sc/inc/optutil.hxx')
-rw-r--r-- | sc/inc/optutil.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/optutil.hxx b/sc/inc/optutil.hxx index 151c0c06b2ae..1eb365d4865f 100644 --- a/sc/inc/optutil.hxx +++ b/sc/inc/optutil.hxx @@ -31,7 +31,7 @@ public: // values must correspond with integer values stored in the configuration enum KeyBindingType { KEY_DEFAULT = 0, KEY_OOO_LEGACY = 1 }; - static sal_Bool IsMetricSystem(); + static bool IsMetricSystem(); }; @@ -53,7 +53,7 @@ public: com::sun::star::uno::Sequence< com::sun::star::uno::Any> GetProperties(const com::sun::star::uno::Sequence< OUString >& rNames) { return ConfigItem::GetProperties( rNames ); } - sal_Bool PutProperties( const com::sun::star::uno::Sequence< OUString >& rNames, + bool PutProperties( const com::sun::star::uno::Sequence< OUString >& rNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any>& rValues) { return ConfigItem::PutProperties( rNames, rValues ); } |