diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-03 16:08:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:50 +0200 |
commit | a5c93041794164ecaae9e71ee1c83c187ad17aab (patch) | |
tree | bdc307b538d7cec104a430d33920b351976fe0de /include | |
parent | 10cbf4838e6e05e58887e5a14aa5e274521854b2 (diff) |
convert include/svx/XPropertyEntry.hxx from String to OUString
Change-Id: Ie112b2e8af32eba60f67f767dd6a098980d907b4
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/XPropertyEntry.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/XPropertyEntry.hxx b/include/svx/XPropertyEntry.hxx index 32b5b409c27b..e006e2e5ad0f 100644 --- a/include/svx/XPropertyEntry.hxx +++ b/include/svx/XPropertyEntry.hxx @@ -28,18 +28,18 @@ class SVX_DLLPUBLIC XPropertyEntry { private: - String maName; - Bitmap maUiBitmap; + OUString maName; + Bitmap maUiBitmap; protected: - XPropertyEntry(const String& rName); + XPropertyEntry(const OUString& rName); XPropertyEntry(const XPropertyEntry& rOther); public: virtual ~XPropertyEntry(); - void SetName(const String& rName) { maName = rName; } - const String& GetName() const { return maName; } + void SetName(const OUString& rName) { maName = rName; } + const OUString& GetName() const { return maName; } void SetUiBitmap(const Bitmap& rUiBitmap) { maUiBitmap = rUiBitmap; } const Bitmap& GetUiBitmap() const { return maUiBitmap; } }; |