summaryrefslogtreecommitdiff
path: root/uui/source/logindlg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-30 09:02:45 +0200
committerNoel Grandin <noel@peralex.com>2014-05-02 08:49:18 +0200
commit0376c6dc74bebc6df57a43f4d62e935710d3a5d2 (patch)
treeb714865179fb4500b09f1a8bdf40b70eec2d6368 /uui/source/logindlg.hxx
parent5371642efdca30e1428b3103b0c30b30be69d278 (diff)
uui: sal_Bool->bool
Change-Id: Iba9f7586e7742135a3377826c7ab0c83beb30fa5
Diffstat (limited to 'uui/source/logindlg.hxx')
-rw-r--r--uui/source/logindlg.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/uui/source/logindlg.hxx b/uui/source/logindlg.hxx
index c3f8ecaee2d7..07943b3446da 100644
--- a/uui/source/logindlg.hxx
+++ b/uui/source/logindlg.hxx
@@ -60,7 +60,7 @@ class LoginDialog : public ModalDialog
OKButton* m_pOKBtn;
void HideControls_Impl( sal_uInt16 nFlags );
- void EnableUseSysCredsControls_Impl( sal_Bool bUseSysCredsEnabled );
+ void EnableUseSysCredsControls_Impl( bool bUseSysCredsEnabled );
DECL_LINK(OKHdl_Impl, void *);
DECL_LINK(PathHdl_Impl, void *);
@@ -78,11 +78,11 @@ public:
void SetPassword( const OUString& rNew ) { m_pPasswordED->SetText( rNew ); }
OUString GetAccount() const { return m_pAccountED->GetText(); }
void SetAccount( const OUString& rNew ) { m_pAccountED->SetText( rNew ); }
- sal_Bool IsSavePassword() const { return m_pSavePasswdBtn->IsChecked(); }
- void SetSavePassword( sal_Bool bSave ) { m_pSavePasswdBtn->Check( bSave ); }
+ bool IsSavePassword() const { return m_pSavePasswdBtn->IsChecked(); }
+ void SetSavePassword( bool bSave ) { m_pSavePasswdBtn->Check( bSave ); }
void SetSavePasswordText( const OUString& rTxt ) { m_pSavePasswdBtn->SetText( rTxt ); }
- sal_Bool IsUseSystemCredentials() const { return m_pUseSysCredsCB->IsChecked(); }
- void SetUseSystemCredentials( sal_Bool bUse );
+ bool IsUseSystemCredentials() const { return m_pUseSysCredsCB->IsChecked(); }
+ void SetUseSystemCredentials( bool bUse );
void SetErrorText( const OUString& rTxt ) { m_pErrorInfo->SetText( rTxt ); }
void SetLoginRequestText( const OUString& rTxt ) { m_pRequestInfo->SetText( rTxt ); }
void ClearPassword();