diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-16 09:14:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-16 11:51:51 +0200 |
commit | 199d333f131474729a105afa5a3da61205f61df2 (patch) | |
tree | 01c0270df697b8857af0ad52fd8bd4502ccf86a0 /connectivity/source/inc/AutoRetrievingBase.hxx | |
parent | 2f316b07a502b527876462d524061dbf6c9a04d5 (diff) |
connectivity: sal_Bool->bool
Change-Id: I96371121ce6697f153f4e973e65831ea2265eb56
Diffstat (limited to 'connectivity/source/inc/AutoRetrievingBase.hxx')
-rw-r--r-- | connectivity/source/inc/AutoRetrievingBase.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/AutoRetrievingBase.hxx b/connectivity/source/inc/AutoRetrievingBase.hxx index b97558b1a82f..60ad96e49872 100644 --- a/connectivity/source/inc/AutoRetrievingBase.hxx +++ b/connectivity/source/inc/AutoRetrievingBase.hxx @@ -27,15 +27,15 @@ namespace connectivity class OOO_DLLPUBLIC_DBTOOLS OAutoRetrievingBase { OUString m_sGeneratedValueStatement; // contains the statement which should be used when query for automatically generated values - sal_Bool m_bAutoRetrievingEnabled; // set to when we should allow to query for generated values + bool m_bAutoRetrievingEnabled; // set to when we should allow to query for generated values protected: - OAutoRetrievingBase() : m_bAutoRetrievingEnabled(sal_False) {} + OAutoRetrievingBase() : m_bAutoRetrievingEnabled(false) {} virtual ~OAutoRetrievingBase(){} - inline void enableAutoRetrievingEnabled(sal_Bool _bAutoEnable) { m_bAutoRetrievingEnabled = _bAutoEnable; } + inline void enableAutoRetrievingEnabled(bool _bAutoEnable) { m_bAutoRetrievingEnabled = _bAutoEnable; } inline void setAutoRetrievingStatement(const OUString& _sStmt) { m_sGeneratedValueStatement = _sStmt; } public: - inline sal_Bool isAutoRetrievingEnabled() const { return m_bAutoRetrievingEnabled; } + inline bool isAutoRetrievingEnabled() const { return m_bAutoRetrievingEnabled; } inline const OUString& getAutoRetrievingStatement() const { return m_sGeneratedValueStatement; } /** transform the statement to query for auto generated values |