summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uui/source/authfallbackdlg.cxx2
-rw-r--r--uui/source/passworddlg.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/authfallbackdlg.cxx b/uui/source/authfallbackdlg.cxx
index 3acbc2ffcbe3..70ed1e7396d9 100644
--- a/uui/source/authfallbackdlg.cxx
+++ b/uui/source/authfallbackdlg.cxx
@@ -26,7 +26,7 @@ AuthFallbackDlg::AuthFallbackDlg(Window* pParent, const OUString& instructions,
m_pBTOk->SetClickHdl( LINK( this, AuthFallbackDlg, OKHdl) );
m_pBTCancel->SetClickHdl( LINK( this, AuthFallbackDlg, CancelHdl) );
- m_pBTOk->Enable( true );
+ m_pBTOk->Enable();
m_pTVInstructions->SetText( instructions );
m_pEDUrl->SetText( url );
diff --git a/uui/source/passworddlg.cxx b/uui/source/passworddlg.cxx
index c993ac201871..3485a3cbf3b4 100644
--- a/uui/source/passworddlg.cxx
+++ b/uui/source/passworddlg.cxx
@@ -64,8 +64,8 @@ PasswordDialog::PasswordDialog(vcl::Window* _pParent,
m_pFTConfirmPassword->Show();
m_pEDConfirmPassword->Show();
- m_pFTConfirmPassword->Enable( true );
- m_pEDConfirmPassword->Enable( true );
+ m_pFTConfirmPassword->Enable();
+ m_pEDConfirmPassword->Enable();
}
SetText( aTitle );