summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-06 16:16:11 +0200
committerNoel Grandin <noel@peralex.com>2013-08-12 11:56:44 +0200
commitf9f8f21fda1b1978eb23eb366b6e0955aaacc395 (patch)
tree24f0aea4a097947f7a8d9462303169d6c41dba2f
parented55bea114561e3fbcbd472964527ccddcb34af2 (diff)
convert vcl/abstdlg.hxx from String to OUString
Change-Id: I5c3066d458aab78ccadd14c35bdd91361dad81bf
-rw-r--r--cui/source/factory/dlgfact.cxx4
-rw-r--r--cui/source/factory/dlgfact.hxx6
-rw-r--r--include/vcl/abstdlg.hxx6
3 files changed, 8 insertions, 8 deletions
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 94a7a16f953c..5b2928a74071 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -989,11 +989,11 @@ Window * AbstractSvxPostItDialog_Impl::GetWindow()
return (Window *)pDlg;
}
-String AbstractPasswordToOpenModifyDialog_Impl::GetPasswordToOpen() const
+OUString AbstractPasswordToOpenModifyDialog_Impl::GetPasswordToOpen() const
{
return pDlg->GetPasswordToOpen();
}
-String AbstractPasswordToOpenModifyDialog_Impl::GetPasswordToModify() const
+OUString AbstractPasswordToOpenModifyDialog_Impl::GetPasswordToModify() const
{
return pDlg->GetPasswordToModify();
}
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 4c36e8185f97..a4b39d9aaac2 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -569,9 +569,9 @@ class AbstractPasswordToOpenModifyDialog_Impl : public AbstractPasswordToOpenMod
{
DECL_ABSTDLG_BASE( AbstractPasswordToOpenModifyDialog_Impl, PasswordToOpenModifyDialog )
- virtual String GetPasswordToOpen() const;
- virtual String GetPasswordToModify() const;
- virtual bool IsRecommendToOpenReadonly() const;
+ virtual OUString GetPasswordToOpen() const;
+ virtual OUString GetPasswordToModify() const;
+ virtual bool IsRecommendToOpenReadonly() const;
};
//for PasswordToOpenModifyDialog end
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index 5f92c74d5c08..d6725202b6e1 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -59,9 +59,9 @@ public:
class VCL_DLLPUBLIC AbstractPasswordToOpenModifyDialog : public VclAbstractDialog
{
public:
- virtual String GetPasswordToOpen() const = 0;
- virtual String GetPasswordToModify() const = 0;
- virtual bool IsRecommendToOpenReadonly() const = 0;
+ virtual OUString GetPasswordToOpen() const = 0;
+ virtual OUString GetPasswordToModify() const = 0;
+ virtual bool IsRecommendToOpenReadonly() const = 0;
};
//-------------------------------------------------------------