diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-03 10:25:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:24 +0200 |
commit | d4a5d638b7d863abb29b5a1b7e2eabf6d7f76c2a (patch) | |
tree | bbb3d02e57d52ed8df5ce3f7f8c1554254adb62b | |
parent | d7ce41516681e78cd81f2f1834b8467074240239 (diff) |
convert include/svx/passwd.hxx from String to OUString
Change-Id: I9827783f4e6c92b36c22446e9fb24351733852e9
-rw-r--r-- | include/svx/passwd.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/passwd.hxx b/include/svx/passwd.hxx index b59898db66f7..532ee6e0170b 100644 --- a/include/svx/passwd.hxx +++ b/include/svx/passwd.hxx @@ -45,8 +45,8 @@ private: CancelButton aEscBtn; HelpButton aHelpBtn; - String aOldPasswdErrStr; - String aRepeatPasswdErrStr; + OUString aOldPasswdErrStr; + OUString aRepeatPasswdErrStr; Link aCheckPasswordHdl; @@ -59,8 +59,8 @@ public: SvxPasswordDialog( Window* pParent, sal_Bool bAllowEmptyPasswords = sal_False, sal_Bool bDisableOldPassword = sal_False ); ~SvxPasswordDialog(); - String GetOldPassword() const { return aOldPasswdED.GetText(); } - String GetNewPassword() const { return aNewPasswdED.GetText(); } + OUString GetOldPassword() const { return aOldPasswdED.GetText(); } + OUString GetNewPassword() const { return aNewPasswdED.GetText(); } void SetCheckPasswordHdl( const Link& rLink ) { aCheckPasswordHdl = rLink; } }; |