Merge branch 'master' into sebas/kplugins

wilder-5.14
Sebastian Kügler 13 years ago
commit 5c158040fe
  1. 6
      widgetexplorer/widgetexplorer.cpp

@ -320,7 +320,11 @@ void WidgetExplorerPrivate::initRunningApplets()
// QObject::connect(containment, &Containment::appletRemoved, q, &WidgetExplorerPrivate::appletRemoved);
foreach (Applet *applet, containment->applets()) {
runningApplets[applet->pluginInfo().pluginName()]++;
if (applet->pluginInfo().isValid()) {
runningApplets[applet->pluginInfo().pluginName()]++;
} else {
qDebug() << "Invalid plugininfo. :(";
}
}
}

Loading…
Cancel
Save