Simplify the DCLP singleton instances found by searching for methods named 'getInstance'.

This commit is contained in:
Adam Reichold
2015-11-28 12:31:43 +01:00
parent f77ca41a6f
commit 9ec0557edf
6 changed files with 12 additions and 69 deletions

View File

@@ -168,19 +168,8 @@ PreviewLoader::PreviewLoader():
PreviewLoader* PreviewLoader::getInstance(void)
{
// this will not be deleted...
static PreviewLoader* instance_ = NULL;
if ( instance_ == NULL ) {
static MyMutex smutex_;
MyMutex::MyLock lock(smutex_);
if ( instance_ == NULL ) {
instance_ = new PreviewLoader();
}
}
return instance_;
static PreviewLoader instance_;
return &instance_;
}
void PreviewLoader::add(int dir_id, const Glib::ustring& dir_entry, PreviewLoaderListener* l)