Merge remote-tracking branch 'origin/4.5'

Change-Id: Iab6befd5e713289877aa0a47b9ce6bddfb5e2593
This commit is contained in:
Eike Ziller
2017-11-16 08:49:06 +01:00
38 changed files with 200 additions and 58 deletions

View File

@@ -1224,7 +1224,7 @@ Project *RunControl::project() const
bool RunControl::canReUseOutputPane(const RunControl *other) const
{
if (other->isRunning())
if (!other || other->isRunning())
return false;
return d->runnable.canReUseOutputPane(other->d->runnable);