diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/svmain.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 9372e74afc17..16b83439751b 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -294,6 +294,12 @@ namespace vclmain bool InitVCL() { + if (isInitVCL()) + { + SAL_INFO("vcl.app", "Double initialization of vcl"); + return true; + } + if( pExceptionHandler != nullptr ) return false; |