diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-03-08 10:20:02 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-03-08 10:23:04 +0200 |
commit | 13e9870bb554d23eef18f327970b1c378bcf7068 (patch) | |
tree | cbedb7e7adad19ae1f19d251a703106eee97386f /vcl/source/app | |
parent | 07b3d72efad04e4caa28b3195c5c0bec6e5bd833 (diff) |
Bin a pointless level of macro abstraction
Change-Id: I343844aca956a1ce05c733f60a28d51115574ef8
Diffstat (limited to 'vcl/source/app')
-rw-r--r-- | vcl/source/app/svmain.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 5fdd2687d013..6ca4c07f704d 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -301,7 +301,9 @@ bool InitVCL() // Set exception handler pExceptionHandler = osl_addSignalHandler(VCLExceptionSignal_impl, nullptr); - DBGGUI_INIT_SOLARMUTEXCHECK(); +#ifdef DBG_UTIL + DbgGUIInitSolarMutexCheck(); +#endif #if OSL_DEBUG_LEVEL > 0 DebugEventInjector::getCreate(); @@ -447,7 +449,9 @@ void DeInitVCL() } pSVData->mpDefaultWin.disposeAndClear(); - DBGGUI_DEINIT_SOLARMUTEXCHECK(); +#ifdef DBG_UTIL + DbgGUIDeInitSolarMutexCheck(); +#endif if ( pSVData->mpUnoWrapper ) { |