diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-22 16:16:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:01 +0200 |
commit | 2e60444c9062cc4dc262f862129c312407889fda (patch) | |
tree | 417808e905935b478362887a7bfa0696be999294 /include/sfx2/passwd.hxx | |
parent | cdab3d619ca0389d4c14e3b50fb66bbadcf5c52f (diff) |
convert include/sfx2/passwd.hxx from String to OUString
Change-Id: I0c290baa3aa6cb09455109f243e06bb6938aca8f
Diffstat (limited to 'include/sfx2/passwd.hxx')
-rw-r--r-- | include/sfx2/passwd.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/sfx2/passwd.hxx b/include/sfx2/passwd.hxx index b0efa7bc147c..21c5e0107fe1 100644 --- a/include/sfx2/passwd.hxx +++ b/include/sfx2/passwd.hxx @@ -60,9 +60,9 @@ private: OKButton* mpOKBtn; - String maMinLenPwdStr; - String maEmptyPwdStr; - String maMainPwdStr; + OUString maMinLenPwdStr; + OUString maEmptyPwdStr; + OUString maMainPwdStr; sal_uInt16 mnMinLen; sal_uInt16 mnExtras; @@ -75,27 +75,27 @@ private: public: SfxPasswordDialog(Window* pParent, const OUString* pGroupText = NULL); - String GetUser() const + OUString GetUser() const { return mpUserED->GetText(); } - String GetPassword() const + OUString GetPassword() const { return mpPassword1ED->GetText(); } - String GetConfirm() const + OUString GetConfirm() const { return mpConfirm1ED->GetText(); } - String GetPassword2() const + OUString GetPassword2() const { return mpPassword2ED->GetText(); } - String GetConfirm2() const + OUString GetConfirm2() const { return mpConfirm2ED->GetText(); } - void SetGroup2Text(const String& i_rText) + void SetGroup2Text(const OUString& i_rText) { mpPassword2Box->set_label(i_rText); } |