summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-07-31 15:16:16 +0200
committerNoel Grandin <noel@peralex.com>2013-07-31 15:29:15 +0200
commitd67d5698c67ccc97675de2830e6dd980a93c3000 (patch)
treec3f912526cd04be08c9891330c75487dc348cb1d /sfx2/source/appl
parentee30fdf6780d642e5f7e91385d9e7b5cca434888 (diff)
fix android build after my XubString changes in VCL
Change-Id: I6727db5f64041a6f181810696eef56175385c96c
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/appinit.cxx4
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;