mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
Merge pull request #5487
270f42d
[Qt] fix a <Qt4.7 compatibility issue raised in #5228 (Jonas Schnelli)
This commit is contained in:
commit
28a274e6ce
@ -68,7 +68,11 @@ NetworkStyle::NetworkStyle(const QString &appName, const int iconColorHueShift,
|
|||||||
}
|
}
|
||||||
|
|
||||||
//convert back to QPixmap
|
//convert back to QPixmap
|
||||||
|
#if QT_VERSION >= 0x040700
|
||||||
pixmap.convertFromImage(img);
|
pixmap.convertFromImage(img);
|
||||||
|
#else
|
||||||
|
pixmap = QPixmap::fromImage(img);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
appIcon = QIcon(pixmap);
|
appIcon = QIcon(pixmap);
|
||||||
|
Loading…
Reference in New Issue
Block a user