Kaydet (Commit) 4f0bf3db authored tarafından Noel Grandin's avatar Noel Grandin

convert include/svx/swframeposstrings.hxx from String to OUString

Change-Id: I762a08c61f6d7b3fa97195d9da19f54da1b553f4
üst d7d3a0ed
...@@ -80,7 +80,7 @@ public: ...@@ -80,7 +80,7 @@ public:
STR_MAX STR_MAX
}; };
const String& GetString(StringId eId); const OUString& GetString(StringId eId);
}; };
#endif #endif
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
class SvxSwFramePosString_Impl : public Resource class SvxSwFramePosString_Impl : public Resource
{ {
friend class SvxSwFramePosString; friend class SvxSwFramePosString;
String aStrings[SvxSwFramePosString::STR_MAX]; OUString aStrings[SvxSwFramePosString::STR_MAX];
public: public:
SvxSwFramePosString_Impl(); SvxSwFramePosString_Impl();
}; };
...@@ -51,7 +51,7 @@ SvxSwFramePosString::~SvxSwFramePosString() ...@@ -51,7 +51,7 @@ SvxSwFramePosString::~SvxSwFramePosString()
delete pImpl; delete pImpl;
} }
const String& SvxSwFramePosString::GetString(StringId eId) const OUString& SvxSwFramePosString::GetString(StringId eId)
{ {
DBG_ASSERT(eId >= 0 && eId < STR_MAX, "invalid StringId"); DBG_ASSERT(eId >= 0 && eId < STR_MAX, "invalid StringId");
if(!(eId >= 0 && eId < STR_MAX)) if(!(eId >= 0 && eId < STR_MAX))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment