diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-21 16:39:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-22 10:49:34 +0200 |
commit | e27e53feea8822ee3ce10ee66a7ff0dbbbf5ee1a (patch) | |
tree | 6dc0a9635e8f9440936b1055ae51f409af07dadb /include/sfx2/viewfac.hxx | |
parent | b2a196a8a16e6d093dcbcaef471e5f6b41e33821 (diff) |
convert include/sfx2/viewfac.hxx from String to OUString
Change-Id: Ia0cea486e77e449f86cf21013dd193523868261f
Diffstat (limited to 'include/sfx2/viewfac.hxx')
-rw-r--r-- | include/sfx2/viewfac.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sfx2/viewfac.hxx b/include/sfx2/viewfac.hxx index 3348cb69d199..7ff45729dad1 100644 --- a/include/sfx2/viewfac.hxx +++ b/include/sfx2/viewfac.hxx @@ -38,22 +38,22 @@ public: sal_uInt16 nOrdinal, const sal_Char* asciiViewName ); SfxViewShell *CreateInstance(SfxViewFrame *pViewFrame, SfxViewShell *pOldSh); - sal_uInt16 GetOrdinal() const { return nOrd; } + sal_uInt16 GetOrdinal() const { return nOrd; } /// returns a legacy view name. This is "view" with an appended ordinal/ID. - String GetLegacyViewName() const; + OUString GetLegacyViewName() const; /** returns a API-compatible view name. For details on which view names are specified, see the XModel2.getAvailableViewControllerNames documentation. */ - String GetAPIViewName() const; + OUString GetAPIViewName() const; private: - SfxViewCtor fnCreate; + SfxViewCtor fnCreate; sal_uInt16 nOrd; - const String m_sViewName; + const OUString m_sViewName; }; #endif |