diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-03 14:34:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:46 +0200 |
commit | c841b0405ed0d63980b0f92c6b4a45d66ae9010b (patch) | |
tree | 0ac66230a379e28eca200b91a615750fe18907bc /include/svx | |
parent | 1e7632abaa3f4c8fd83f7052b95dc88eac3d3626 (diff) |
convert include/svx/fmpage.hxx from String to OUString
Change-Id: I7f602b483a69fb406dc4d9a35363e301a532a28b
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/fmpage.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/fmpage.hxx b/include/svx/fmpage.hxx index ba3bdd13679d..93271d43b4cf 100644 --- a/include/svx/fmpage.hxx +++ b/include/svx/fmpage.hxx @@ -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, |