convert include/svx/swframeposstrings.hxx from String to OUString
Change-Id: I762a08c61f6d7b3fa97195d9da19f54da1b553f4
This commit is contained in:
@@ -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 @@
|
|||||||
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()
|
|||||||
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))
|
||||||
|
Reference in New Issue
Block a user