Kaydet (Commit) d4a5d638 authored tarafından Noel Grandin's avatar Noel Grandin

convert include/svx/passwd.hxx from String to OUString

Change-Id: I9827783f4e6c92b36c22446e9fb24351733852e9
üst d7ce4151
...@@ -45,8 +45,8 @@ private: ...@@ -45,8 +45,8 @@ private:
CancelButton aEscBtn; CancelButton aEscBtn;
HelpButton aHelpBtn; HelpButton aHelpBtn;
String aOldPasswdErrStr; OUString aOldPasswdErrStr;
String aRepeatPasswdErrStr; OUString aRepeatPasswdErrStr;
Link aCheckPasswordHdl; Link aCheckPasswordHdl;
...@@ -59,8 +59,8 @@ public: ...@@ -59,8 +59,8 @@ public:
SvxPasswordDialog( Window* pParent, sal_Bool bAllowEmptyPasswords = sal_False, sal_Bool bDisableOldPassword = sal_False ); SvxPasswordDialog( Window* pParent, sal_Bool bAllowEmptyPasswords = sal_False, sal_Bool bDisableOldPassword = sal_False );
~SvxPasswordDialog(); ~SvxPasswordDialog();
String GetOldPassword() const { return aOldPasswdED.GetText(); } OUString GetOldPassword() const { return aOldPasswdED.GetText(); }
String GetNewPassword() const { return aNewPasswdED.GetText(); } OUString GetNewPassword() const { return aNewPasswdED.GetText(); }
void SetCheckPasswordHdl( const Link& rLink ) { aCheckPasswordHdl = rLink; } void SetCheckPasswordHdl( const Link& rLink ) { aCheckPasswordHdl = rLink; }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment