From 1c48275a28fa3bccdeb6bc12e4f0bcea6c05a81b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 6 Feb 2017 11:51:27 +0000 Subject: convert resources containing strings to stringarray resources Change-Id: I8a306b417dcf533a148e34a6314e37589dcdda12 --- include/svx/swframeposstrings.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') 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 pImpl; + std::unique_ptr pImpl; }; #endif -- cgit