summaryrefslogtreecommitdiff
path: root/uui/source/logindlg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-25 12:18:11 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:40 +0200
commitb879adc316d6628fad7be35e758052860171bcf2 (patch)
tree1f65afe787b1cc680bcd055a90e878047f395052 /uui/source/logindlg.hxx
parentc82d932510c88a12b260b1684522efbc69f07b26 (diff)
convert UUI module from String to OUString
Change-Id: I0dfcdb0b95112b5ee18b05d0c496059292be65c4
Diffstat (limited to 'uui/source/logindlg.hxx')
-rw-r--r--uui/source/logindlg.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/uui/source/logindlg.hxx b/uui/source/logindlg.hxx
index 71d6fbf2fc55..7aad21103c41 100644
--- a/uui/source/logindlg.hxx
+++ b/uui/source/logindlg.hxx
@@ -77,21 +77,21 @@ public:
ResMgr * pResMgr );
virtual ~LoginDialog();
- String GetPath() const { return aPathED.GetText(); }
- void SetPath( const String& rNewPath ) { aPathED.SetText( rNewPath ); }
- String GetName() const { return aNameED.GetText(); }
- void SetName( const String& rNewName ) { aNameED.SetText( rNewName ); }
- String GetPassword() const { return aPasswordED.GetText(); }
- void SetPassword( const String& rNew ) { aPasswordED.SetText( rNew ); }
- String GetAccount() const { return aAccountED.GetText(); }
- void SetAccount( const String& rNew ) { aAccountED.SetText( rNew ); }
+ OUString GetPath() const { return aPathED.GetText(); }
+ void SetPath( const OUString& rNewPath ) { aPathED.SetText( rNewPath ); }
+ OUString GetName() const { return aNameED.GetText(); }
+ void SetName( const OUString& rNewName ) { aNameED.SetText( rNewName ); }
+ OUString GetPassword() const { return aPasswordED.GetText(); }
+ void SetPassword( const OUString& rNew ) { aPasswordED.SetText( rNew ); }
+ OUString GetAccount() const { return aAccountED.GetText(); }
+ void SetAccount( const OUString& rNew ) { aAccountED.SetText( rNew ); }
sal_Bool IsSavePassword() const { return aSavePasswdBtn.IsChecked(); }
void SetSavePassword( sal_Bool bSave ) { aSavePasswdBtn.Check( bSave ); }
- void SetSavePasswordText( const String& rTxt ) { aSavePasswdBtn.SetText( rTxt ); }
+ void SetSavePasswordText( const OUString& rTxt ) { aSavePasswdBtn.SetText( rTxt ); }
sal_Bool IsUseSystemCredentials() const { return aUseSysCredsCB.IsChecked(); }
void SetUseSystemCredentials( sal_Bool bUse );
- void SetErrorText( const String& rTxt ) { aErrorInfo.SetText( rTxt ); }
- void SetLoginRequestText( const String& rTxt ) { aRequestInfo.SetText( rTxt ); }
+ void SetErrorText( const OUString& rTxt ) { aErrorInfo.SetText( rTxt ); }
+ void SetLoginRequestText( const OUString& rTxt ) { aRequestInfo.SetText( rTxt ); }
void ClearPassword();
void ClearAccount();
};