the tip can be null
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=837827
This commit is contained in:
parent
12ec0f5c2b
commit
263870d46d
@ -238,7 +238,9 @@ void ToolTipManagerPrivate::themeUpdated()
|
||||
QMapIterator<QGraphicsWidget*, ToolTip *> iterator(tooltips);
|
||||
while (iterator.hasNext()) {
|
||||
iterator.next();
|
||||
iterator.value()->updateTheme();
|
||||
if (iterator.value()) {
|
||||
iterator.value()->updateTheme();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user