summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-03 10:16:06 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-03 10:16:06 +0000
commit698ee4170303e86b7ff67d0eee14cc0720bef06f (patch)
tree4d8903f6407e29b2c1bc5bce8ee31a63038b6c45
parent5a0406aa77feb8779200a7906f55c0176ceaafd6 (diff)
abort doesn't gain us anything here.
abort doesn't gain us anything here except to force abrt automatic bugreports kick in, and XIOErrors can't be worked around
-rw-r--r--vcl/unx/source/plugadapt/salplug.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/source/plugadapt/salplug.cxx b/vcl/unx/source/plugadapt/salplug.cxx
index 0accb8def42f..7398cc8410a6 100644
--- a/vcl/unx/source/plugadapt/salplug.cxx
+++ b/vcl/unx/source/plugadapt/salplug.cxx
@@ -284,7 +284,7 @@ void SalAbort( const XubString& rErrorText )
284 std::fprintf( stderr, "Application Error" ); 284 std::fprintf( stderr, "Application Error" );
285 else 285 else
286 std::fprintf( stderr, "%s", ByteString( rErrorText, gsl_getSystemTextEncoding() ).GetBuffer() ); 286 std::fprintf( stderr, "%s", ByteString( rErrorText, gsl_getSystemTextEncoding() ).GetBuffer() );
287 abort(); 287 exit(-1);
288} 288}
289 289
290const OUString& SalGetDesktopEnvironment() 290const OUString& SalGetDesktopEnvironment()