From kde-commits Wed Aug 27 20:27:36 2003 From: Antonio Larrosa Jimenez Date: Wed, 27 Aug 2003 20:27:36 +0000 To: kde-commits Subject: kdemultimedia/noatun/modules/systray X-MARC-Message: https://marc.info/?l=kde-commits&m=106201655100621 CVS commit by antlarr: fixed the icons for the system tray M +2 -2 systray.cpp 1.33 --- kdemultimedia/noatun/modules/systray/systray.cpp #1.32:1.33 @@ -352,9 +352,9 @@ void NoatunSystray::setPassivePopup(bool QPixmap *NoatunSystray::renderIcon(const QString& baseIcon, const QString &overlayIcon) const { - QPixmap *base = new QPixmap(SmallIcon(baseIcon)); + QPixmap *base = new QPixmap(KSystemTray::loadIcon(baseIcon)); if(!(overlayIcon.isNull())) // otherwise leave the base as-is { - QPixmap overlay = SmallIcon(overlayIcon); + QPixmap overlay = KSystemTray::loadIcon(overlayIcon); if(!overlay.isNull()) {