diff options
author | Michael Meeks <michael.meeks@suse.com> | 2011-10-05 14:00:00 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-10-05 14:00:34 +0100 |
commit | 6c2d66e5257e46f8db438ae2151ba440870e2400 (patch) | |
tree | a427b3a48203596332936bda3313e1a87dd8d7cd /desktop/unx | |
parent | 9891d0722f2d4cec1ec7f522dc3abe2f2de6de63 (diff) |
remove const sal_Char * casts of rtl::OUStringToOString results, fixes ucb
Diffstat (limited to 'desktop/unx')
-rw-r--r-- | desktop/unx/splash/unxsplash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/unx/splash/unxsplash.cxx b/desktop/unx/splash/unxsplash.cxx index 88d6906bfdea..85a9f809636f 100644 --- a/desktop/unx/splash/unxsplash.cxx +++ b/desktop/unx/splash/unxsplash.cxx @@ -130,7 +130,7 @@ UnxSplashScreen::initialize( const ::com::sun::star::uno::Sequence< ::com::sun:: m_pOutFd = fdopen( fd, "w" ); #if OSL_DEBUG_LEVEL > 1 fprintf( stderr, "Got argument '--splash-pipe=%d ('%s') (%p)\n", - fd, (const sal_Char *)rtl::OUStringToOString( aNum, RTL_TEXTENCODING_UTF8 ), + fd, rtl::OUStringToOString( aNum, RTL_TEXTENCODING_UTF8 ).getStr(), m_pOutFd ); #endif } |