diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-18 15:50:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-18 15:51:27 +0200 |
commit | 47088ac9a04bd7e5198e7a6c3160e0dbeea0000b (patch) | |
tree | 1167edaefb5496c74a86fa03632711a2efd00bcb /vcl | |
parent | 2f5e479ae18a1584d8defbf35454b8357e3557ad (diff) |
Missing SolarMutexGuards
...as can be seen e.g. with CppunitTest_dbaccess_dialog_save:
vcl::DisplayConnection::start
Application::GetDisplayConnection
Window::GetDragSource
Window::GetDropTarget
(anonymous namespace)::VCLXToolkit::getDropTarget
(anonymous namespace)::Frame::implts_startWindowListening
(anonymous namespace)::Frame::initialize
(anonymous namespace)::TaskCreatorService::implts_createFrame
(anonymous namespace)::TaskCreatorService::createInstanceWithArguments
framework::TaskCreator::createTask
framework::Desktop::findFrame
framework::LoadEnv::impl_loadContent
framework::LoadEnv::startLoading
framework::LoadEnv::loadComponentFromURL
framework::Desktop::loadComponentFromURL
unotest::MacrosTest::loadFromDesktop
DialogSaveTest::test
...
Change-Id: I9523ea47cab23d1f23f73a37d2d44453aa7d56a3
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/helper/xconnection.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/helper/xconnection.cxx b/vcl/source/helper/xconnection.cxx index 570bd7150e4a..6c86f8327c95 100644 --- a/vcl/source/helper/xconnection.cxx +++ b/vcl/source/helper/xconnection.cxx @@ -49,12 +49,14 @@ DisplayConnection::~DisplayConnection() void DisplayConnection::start() { + DBG_TESTSOLARMUTEX(); ImplSVData* pSVData = ImplGetSVData(); pSVData->mpDefInst->SetEventCallback( this ); } void DisplayConnection::terminate() { + DBG_TESTSOLARMUTEX(); ImplSVData* pSVData = ImplGetSVData(); if( pSVData ) |