summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-02-06 11:51:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-02-07 13:07:57 +0000
commit1c48275a28fa3bccdeb6bc12e4f0bcea6c05a81b (patch)
treeab2355dba87b8a59efa0c8c90f4a3f384ad8a19c /include
parentbubble the original gtk surface type through rendering (diff)
downloadcore-1c48275a28fa3bccdeb6bc12e4f0bcea6c05a81b.tar.gz
core-1c48275a28fa3bccdeb6bc12e4f0bcea6c05a81b.zip
convert resources containing strings to stringarray resources
Change-Id: I8a306b417dcf533a148e34a6314e37589dcdda12
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