diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-03 10:50:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:25 +0200 |
commit | 0728cc90179f78e200e3ab27b34c1c2179ac8432 (patch) | |
tree | 3346bb16d069cdc5c889504ae6daccddf96e873f /include | |
parent | d4a5d638b7d863abb29b5a1b7e2eabf6d7f76c2a (diff) |
convert include/svx/pageitem.hxx from String to OUString
Change-Id: I441c6b46ace2ad1b23357bea83501a67b63e8637
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/pageitem.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/pageitem.hxx b/include/svx/pageitem.hxx index 48d5dd98f04d..00fa70f9e19b 100644 --- a/include/svx/pageitem.hxx +++ b/include/svx/pageitem.hxx @@ -62,8 +62,8 @@ portait or landscape, layout) class SVX_DLLPUBLIC SvxPageItem: public SfxPoolItem { private: - String aDescName; // name of the template - SvxNumType eNumType; // enumeration + OUString aDescName; // name of the template + SvxNumType eNumType; // enumeration sal_Bool bLandscape; // Portrait / Landscape sal_uInt16 eUse; // Layout @@ -98,8 +98,8 @@ public: void SetNumType(SvxNumType eNum) { eNumType = eNum; } // name of the descriptor - const String& GetDescName() const { return aDescName; } - void SetDescName(const String& rStr) { aDescName = rStr; } + const OUString& GetDescName() const { return aDescName; } + void SetDescName(const OUString& rStr) { aDescName = rStr; } }; |