Merge master into gtk3

This commit is contained in:
heckflosse
2016-10-28 17:59:47 +02:00
259 changed files with 5061 additions and 3654 deletions

View File

@@ -28,7 +28,7 @@ int FilePanelInitUI (void* data)
return 0;
}
FilePanel::FilePanel () : parent(NULL)
FilePanel::FilePanel () : parent(nullptr)
{
// Contains everything except for the batch Tool Panel and tabs (Fast Export, Inspect, etc)
@@ -238,7 +238,7 @@ bool FilePanel::fileSelected (Thumbnail* thm)
pendingLoadMutex.lock();
pendingLoad *pl = new pendingLoad();
pl->complete = false;
pl->pc = 0;
pl->pc = nullptr;
pl->thm = thm;
pendingLoads.push_back(pl);
pendingLoadMutex.unlock();