[Qt] fix a <Qt4.7 compatibility issue raised in #5228

pull/262/head
Jonas Schnelli 10 years ago
parent 73cbf0a527
commit 270f42d39f

@ -68,7 +68,11 @@ NetworkStyle::NetworkStyle(const QString &appName, const int iconColorHueShift,
}
//convert back to QPixmap
#if QT_VERSION >= 0x040700
pixmap.convertFromImage(img);
#else
pixmap = QPixmap::fromImage(img);
#endif
}
appIcon = QIcon(pixmap);

Loading…
Cancel
Save