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

Change-Id: I762a08c61f6d7b3fa97195d9da19f54da1b553f4
This commit is contained in:
Noel Grandin 2013-08-30 11:08:19 +02:00
parent d7d3a0edb9
commit 4f0bf3db08
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ public:
STR_MAX
};
const String& GetString(StringId eId);
const OUString& GetString(StringId eId);
};
#endif

View File

@ -26,7 +26,7 @@
class SvxSwFramePosString_Impl : public Resource
{
friend class SvxSwFramePosString;
String aStrings[SvxSwFramePosString::STR_MAX];
OUString aStrings[SvxSwFramePosString::STR_MAX];
public:
SvxSwFramePosString_Impl();
};
@ -51,7 +51,7 @@ SvxSwFramePosString::~SvxSwFramePosString()
delete pImpl;
}
const String& SvxSwFramePosString::GetString(StringId eId)
const OUString& SvxSwFramePosString::GetString(StringId eId)
{
DBG_ASSERT(eId >= 0 && eId < STR_MAX, "invalid StringId");
if(!(eId >= 0 && eId < STR_MAX))