From 56549a939cdf3a2510bbdba21b72632a4f238cf5 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Wed, 1 Feb 2012 15:56:34 +0100 Subject: ByteString -> OUString --- vcl/win/source/app/salinst.cxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'vcl') diff --git a/vcl/win/source/app/salinst.cxx b/vcl/win/source/app/salinst.cxx index d0a6bd0570e4..d491404cd125 100644 --- a/vcl/win/source/app/salinst.cxx +++ b/vcl/win/source/app/salinst.cxx @@ -87,16 +87,15 @@ void SalAbort( const rtl::OUString& rErrorText, bool ) if ( rErrorText.isEmpty() ) { - // #112255# make sure crash reporter is triggered + // make sure crash reporter is triggered RaiseException( 0, EXCEPTION_NONCONTINUABLE, 0, NULL ); - FatalAppExit( 0, "Application Error" ); + FatalAppExitW( 0, L"Application Error" ); } else { - // #112255# make sure crash reporter is triggered + // make sure crash reporter is triggered RaiseException( 0, EXCEPTION_NONCONTINUABLE, 0, NULL ); - ByteString aErrorText( ImplSalGetWinAnsiString( rErrorText ) ); - FatalAppExit( 0, aErrorText.GetBuffer() ); + FatalAppExitW( 0, rErrorText.getStr() ); } } -- cgit