summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/odbcconfig.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-17 11:16:55 +0200
committerNoel Grandin <noel@peralex.com>2014-04-17 11:17:21 +0200
commitfee4efcb54c8162955f6fe626d9b68c3b74b3068 (patch)
treedf8989eab6d8aacb5f37f0673a1a14eb5584a394 /dbaccess/source/ui/dlg/odbcconfig.hxx
parent6907b67d3d3208eb54289db2476132188d86dfec (diff)
dbaccess: sal_Bool->bool
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
Diffstat (limited to 'dbaccess/source/ui/dlg/odbcconfig.hxx')
-rw-r--r--dbaccess/source/ui/dlg/odbcconfig.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/odbcconfig.hxx b/dbaccess/source/ui/dlg/odbcconfig.hxx
index 5e77ae418e3d..3c3737ee9558 100644
--- a/dbaccess/source/ui/dlg/odbcconfig.hxx
+++ b/dbaccess/source/ui/dlg/odbcconfig.hxx
@@ -48,7 +48,7 @@ class OOdbcLibWrapper
public:
#ifdef HAVE_ODBC_SUPPORT
- sal_Bool isLoaded() const { return NULL != m_pOdbcLib; }
+ bool isLoaded() const { return NULL != m_pOdbcLib; }
#else
sal_Bool isLoaded() const { return sal_False; }
#endif
@@ -65,7 +65,7 @@ protected:
oslGenericFunction loadSymbol(const sal_Char* _pFunctionName);
/// load the lib
- sal_Bool load(const sal_Char* _pLibPath);
+ bool load(const sal_Char* _pLibPath);
/// unload the lib
void unload();
};
@@ -94,7 +94,7 @@ public:
protected:
/// ensure that an ODBC environment is allocated
- sal_Bool allocEnv();
+ bool allocEnv();
/// free any allocated ODBC environment
void freeEnv();
};