SVN_SILENT: inserted comment

svn path=/trunk/KDE/kdebase/apps/; revision=1060036
This commit is contained in:
Peter Penz 2009-12-07 22:44:36 +00:00
parent 1c4fddb06e
commit cc88568ad6

View file

@ -25,6 +25,9 @@ UpdateItemStatesThread::UpdateItemStatesThread() :
m_mutex(0),
m_itemStates()
{
// Several threads may share one instance of a plugin. A global
// mutex is required to serialize the retrieval of version control
// states inside run().
static QMutex globalMutex;
m_mutex = &globalMutex;
}