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

Change-Id: I7f602b483a69fb406dc4d9a35363e301a532a28b
This commit is contained in:
Noel Grandin 2013-09-03 14:34:37 +02:00
parent 1e7632abaa
commit c841b0405e

View File

@ -42,7 +42,7 @@ class SVX_DLLPUBLIC FmFormPage : public SdrPage
{
friend class FmFormObj;
FmFormPageImpl* m_pImpl;
String m_sPageName;
OUString m_sPageName;
StarBASIC* m_pBasic;
public:
@ -68,8 +68,8 @@ public:
FmFormPageImpl& GetImpl() const { return *m_pImpl; }
public:
const String& GetName() const { return m_sPageName; }
void SetName( const String& rName ) { m_sPageName = rName; }
const OUString& GetName() const { return m_sPageName; }
void SetName( const OUString& rName ) { m_sPageName = rName; }
StarBASIC* GetBasic() const { return m_pBasic; }
sal_Bool RequestHelp(
Window* pWin,