SVN commit 561920 by kuemmel: under Windows WId is void* (32bit) and qlonglong is 64bit, so we have to cast manually.
Isn't it better to use WId instead of qlonglong as parameter type? CCMAIL:[email protected] M +1 -1 knotify.cpp --- trunk/KDE/kdelibs/knotify/daemon/knotify.cpp #561919:561920 @@ -180,7 +180,7 @@ QPixmap pixmap; pixmap.loadFromData(image); - return static_cast<KNotify *>(parent())->event(event, fromApp, contextlist, text, pixmap, actions, winId); + return static_cast<KNotify *>(parent())->event(event, fromApp, contextlist, text, pixmap, actions, WId(winId)); } #include "knotify.moc" _______________________________________________ Kde-buildsystem mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-buildsystem
