diff options
author | Andras Timar <atimar@suse.com> | 2012-02-01 15:56:34 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-02-01 15:57:09 +0100 |
commit | 56549a939cdf3a2510bbdba21b72632a4f238cf5 (patch) | |
tree | a03afc0f67e6a36b8e1084bd19746be47903aa5a /vcl/win | |
parent | 1205e9a816e6c38b8aa7ba6790017e5ed6c06033 (diff) |
ByteString -> OUString
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/source/app/salinst.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
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() ); } } |