summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/ConnectionHelper.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/ConnectionHelper.hxx
parent6907b67d3d3208eb54289db2476132188d86dfec (diff)
dbaccess: sal_Bool->bool
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
Diffstat (limited to 'dbaccess/source/ui/dlg/ConnectionHelper.hxx')
-rw-r--r--dbaccess/source/ui/dlg/ConnectionHelper.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.hxx b/dbaccess/source/ui/dlg/ConnectionHelper.hxx
index eab21c756b3b..22ad7957bcfc 100644
--- a/dbaccess/source/ui/dlg/ConnectionHelper.hxx
+++ b/dbaccess/source/ui/dlg/ConnectionHelper.hxx
@@ -37,7 +37,7 @@ namespace dbaui
class OConnectionHelper : public OGenericAdministrationPage
{
- sal_Bool m_bUserGrabFocus : 1;
+ bool m_bUserGrabFocus : 1;
public:
OConnectionHelper( Window* pParent, const ResId& _rId, const SfxItemSet& _rCoreAttrs);
@@ -59,7 +59,7 @@ namespace dbaui
virtual void fillControls(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
// <method>OGenericAdministrationPage::fillWindows</method>
virtual void fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
- virtual void implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue) SAL_OVERRIDE;
+ virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
// setting/retrieving the current connection URL
// necessary because for some types, the URL must be decoded for display purposes
@@ -75,9 +75,9 @@ namespace dbaui
*/
sal_Int32 checkPathExistence(const OUString& _rURL);
- IS_PATH_EXIST pathExists(const OUString& _rURL, sal_Bool bIsFile) const;
- sal_Bool createDirectoryDeep(const OUString& _rPathNormalized);
- sal_Bool commitURL();
+ IS_PATH_EXIST pathExists(const OUString& _rURL, bool bIsFile) const;
+ bool createDirectoryDeep(const OUString& _rPathNormalized);
+ bool commitURL();
/** opens the FileOpen dialog and asks for a FileName
@param _aFileOpen
@@ -92,8 +92,8 @@ namespace dbaui
private:
DECL_LINK(OnBrowseConnections, PushButton*);
DECL_LINK(OnCreateDatabase, PushButton*);
- OUString impl_getURL( sal_Bool _bPrefix ) const;
- void impl_setURL( const OUString& _rURL, sal_Bool _bPrefix );
+ OUString impl_getURL( bool _bPrefix ) const;
+ void impl_setURL( const OUString& _rURL, bool _bPrefix );
void implUpdateURLDependentStates() const;
};