From: Dan Williams Date: Wed, 5 Mar 2008 16:30:01 +0000 (+0200) Subject: Fix qt3 wpa_gui build X-Git-Tag: hostap_0_6_4~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d113aa91ca6095977e4b45e4afce4055d77d1b64;p=thirdparty%2Fhostap.git 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 4754462d7..f3fce0697 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) {