From: Dan Williams Date: Wed, 5 Mar 2008 16:30:01 +0000 (+0200) Subject: Fix qt3 wpa_gui build X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=d113aa91ca6095977e4b45e4afce4055d77d1b64;p=wpasupplicant Fix qt3 wpa_gui build When a WpaMsg item to the QValueList WpaMsgList, there's no constructor that the QValueList can call. This is a port of the fix from the stable branch where it builds fine. --- diff --git a/wpa_supplicant/wpa_gui/wpamsg.h b/wpa_supplicant/wpa_gui/wpamsg.h index 4754462..f3fce06 100644 --- a/wpa_supplicant/wpa_gui/wpamsg.h +++ b/wpa_supplicant/wpa_gui/wpamsg.h @@ -14,6 +14,7 @@ typedef QValueList WpaMsgList; class WpaMsg { public: + WpaMsg() {} WpaMsg(const QString &_msg, int _priority = 2) : msg(_msg), priority(_priority) {