diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-05 13:56:08 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-05 13:56:08 +1100 |
commit | 365aa206f026e15e4fcc82fc0f754e46fb15ac53 (patch) | |
tree | 409f005fed071f3399b90c9749cd7bae6b46a8e1 /vcl/source | |
parent | 836320f64f8704dd150f72734192fcebebce89dd (diff) |
vcl: Remove unneeded exception constants
EXC_USER and EXC_REMOTE are not used. EXC_REMOTE was actually used for the
RVP (Remote Visualization Protocol), but that was apparently removed when
Sun opensourced StarView!
Change-Id: Icc644146d18d1ba2f6503c6fdbd9acc85cb9e75c
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/app/svapp.cxx | 1 | ||||
-rw-r--r-- | vcl/source/app/svmain.cxx | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index c36b722efef3..1e75afb64863 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -284,7 +284,6 @@ void Application::Exception( sal_uInt16 nError ) // System has precedence (so do nothing) case EXC_SYSTEM: case EXC_DISPLAY: - case EXC_REMOTE: break; #ifdef DBG_UTIL diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 9c1851918ca2..7631df2ea39b 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -122,11 +122,6 @@ oslSignalAction SAL_CALL VCLExceptionSignal_impl( void* /*pData*/, oslSignalInfo (pInfo->UserSignal == OSL_SIGNAL_USER_X11SUBSYSTEMERROR) ) nVCLException = EXC_DISPLAY; - // Remote-Client - if ((pInfo->Signal == osl_Signal_User) && - (pInfo->UserSignal == OSL_SIGNAL_USER_RVPCONNECTIONERROR) ) - nVCLException = EXC_REMOTE; - if ( nVCLException ) { bIn = true; |