summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_connection.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-02 08:42:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-02 08:42:58 +0200
commitdbf99dfb980f772250e8ec4792c1bf5a1458629b (patch)
tree84dfe95482e1173b6e9bfb8edaf47639d05c247c /mysqlc/source/mysqlc_connection.hxx
parent4776da791f69fa14104f054923be25618c297398 (diff)
mysqlc: sal_Bool -> bool
Change-Id: Ie479e1671b03fbb958886d4c01ecff41b2ad1d23
Diffstat (limited to 'mysqlc/source/mysqlc_connection.hxx')
-rw-r--r--mysqlc/source/mysqlc_connection.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysqlc/source/mysqlc_connection.hxx b/mysqlc/source/mysqlc_connection.hxx
index 36253419e4d1..05eb3bd37bee 100644
--- a/mysqlc/source/mysqlc_connection.hxx
+++ b/mysqlc/source/mysqlc_connection.hxx
@@ -77,7 +77,7 @@ namespace connectivity
OUString schema;
OUString quoteIdentifier;
OUString connectionURL;
- sal_Bool readOnly;
+ bool readOnly;
};
class MysqlCDriver;
@@ -115,9 +115,9 @@ namespace connectivity
MysqlCDriver& m_rDriver; // Pointer to the owning driver object
sql::Driver* cppDriver;
- sal_Bool m_bClosed;
- sal_Bool m_bUseCatalog; // should we use the catalog on filebased databases
- sal_Bool m_bUseOldDateFormat;
+ bool m_bClosed;
+ bool m_bUseCatalog; // should we use the catalog on filebased databases
+ bool m_bUseOldDateFormat;
void buildTypeInfo() throw(SQLException);
@@ -227,7 +227,7 @@ namespace connectivity
OUString transFormPreparedStatement(const OUString& _sSQL);
// should we use the catalog on filebased databases
- inline sal_Bool isCatalogUsed() const { return m_bUseCatalog; }
+ inline bool isCatalogUsed() const { return m_bUseCatalog; }
inline OUString getUserName() const { return m_sUser; }
inline const MysqlCDriver& getDriver() const { return m_rDriver;}
inline rtl_TextEncoding getTextEncoding() const { return m_settings.encoding; }