diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-31 15:16:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-07-31 15:29:15 +0200 |
commit | d67d5698c67ccc97675de2830e6dd980a93c3000 (patch) | |
tree | c3f912526cd04be08c9891330c75487dc348cb1d /sfx2/source/appl/appinit.cxx | |
parent | ee30fdf6780d642e5f7e91385d9e7b5cca434888 (diff) |
fix android build after my XubString changes in VCL
Change-Id: I6727db5f64041a6f181810696eef56175385c96c
Diffstat (limited to 'sfx2/source/appl/appinit.cxx')
-rw-r--r-- | sfx2/source/appl/appinit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/appinit.cxx b/sfx2/source/appl/appinit.cxx index 646993d66659..51f2b23896b1 100644 --- a/sfx2/source/appl/appinit.cxx +++ b/sfx2/source/appl/appinit.cxx @@ -157,7 +157,7 @@ Sequence< OUString > SAL_CALL SfxTerminateListener_Impl::getSupportedServiceName //==================================================================== -typedef bool ( *PFunc_getSpecialCharsForEdit)( Window* i_pParent, const Font& i_rFont, String& o_rOutString ); +typedef bool ( *PFunc_getSpecialCharsForEdit)( Window* i_pParent, const Font& i_rFont, OUString& o_rOutString ); //==================================================================== // Lazy binding of the GetSpecialCharsForEdit function as it resides in @@ -198,7 +198,7 @@ OUString GetSpecialCharsForEdit(Window* pParent, const Font& rFont) #endif } - String aRet; + OUString aRet; if ( pfunc_getSpecialCharsForEdit ) (*pfunc_getSpecialCharsForEdit)( pParent, rFont, aRet ); return aRet; |