summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-02-07 13:11:12 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-02-07 15:38:57 +0000
commit66849453041de0369dc8abe8f172dce2bf4cdaab (patch)
tree7b7a3de4af9f43aeecb2507378b363d8f6caab7e /include
parent6efdd843c831527b2880959746c302fca87c40db (diff)
convert resources containing strings to stringarray resources
Change-Id: I61e815a9545f55a3b886322e7d2c0d50040584bd
Diffstat (limited to 'include')
-rw-r--r--include/svx/swframeposstrings.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/swframeposstrings.hxx b/include/svx/swframeposstrings.hxx
index b81765ab8641..e04522e326cb 100644
--- a/include/svx/swframeposstrings.hxx
+++ b/include/svx/swframeposstrings.hxx
@@ -27,7 +27,7 @@
contains strings needed for positioning dialogs
of frames and drawing in Writer
*/
-class SvxSwFramePosString_Impl;
+class ResStringArray;
class SVX_DLLPUBLIC SvxSwFramePosString
{
public:
@@ -80,10 +80,10 @@ public:
STR_MAX
};
- const OUString& GetString(StringId eId);
+ OUString GetString(StringId eId) const;
private:
- std::unique_ptr<SvxSwFramePosString_Impl> pImpl;
+ std::unique_ptr<ResStringArray> pImpl;
};
#endif