[pkg-wpa-devel] r973 - in /wpasupplicant/trunk/debian: changelog patches/30_qt4_combo_box_additem.patch patches/series

kelmo-guest at users.alioth.debian.org kelmo-guest at users.alioth.debian.org
Wed Jan 2 00:09:56 UTC 2008


Author: kelmo-guest
Date: Wed Jan  2 00:09:56 2008
New Revision: 973

URL: http://svn.debian.org/wsvn/pkg-wpa/?sc=1&rev=973
Log:
* Add debian/patches/30_qt4_combo_box_additem.patch to fix population of
  wpa_gui-qt4 network id combo box by using qt4's addItem function.

Added:
    wpasupplicant/trunk/debian/patches/30_qt4_combo_box_additem.patch
Modified:
    wpasupplicant/trunk/debian/changelog
    wpasupplicant/trunk/debian/patches/series

Modified: wpasupplicant/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/changelog?rev=973&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/changelog (original)
+++ wpasupplicant/trunk/debian/changelog Wed Jan  2 00:09:56 2008
@@ -61,8 +61,10 @@
   * Build the wpa_gui-qt4 variant now that it doesn't require qt3 support
     code. It also closes all child windows on File->Exit. (Closes: #426924)
   * wpasupplicant now Suggests wpagui.
-
- -- Kel Modderman <kel at otaku42.de>  Tue, 01 Jan 2008 23:55:04 +1000
+  * Add debian/patches/30_qt4_combo_box_additem.patch to fix population of
+    wpa_gui-qt4 network id combo box by using qt4's addItem function.
+
+ -- Kel Modderman <kel at otaku42.de>  Wed, 02 Jan 2008 09:58:55 +1000
 
 wpasupplicant (0.6.1~git20071119-1) unstable; urgency=low
 

Added: wpasupplicant/trunk/debian/patches/30_qt4_combo_box_additem.patch
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/patches/30_qt4_combo_box_additem.patch?rev=973&op=file
==============================================================================
--- wpasupplicant/trunk/debian/patches/30_qt4_combo_box_additem.patch (added)
+++ wpasupplicant/trunk/debian/patches/30_qt4_combo_box_additem.patch Wed Jan  2 00:09:56 2008
@@ -1,0 +1,11 @@
+--- a/wpa_supplicant/wpa_gui-qt4/wpagui.cpp
++++ b/wpa_supplicant/wpa_gui-qt4/wpagui.cpp
+@@ -475,7 +475,7 @@
+ 		QString network(id);
+ 		network.append(": ");
+ 		network.append(ssid);
+-		networkSelect->insertItem(-1, network);
++		networkSelect->addItem(network);
+ 
+ 		if (strstr(flags, "[CURRENT]")) {
+ 			networkSelect->setCurrentIndex(networkSelect->count() -

Modified: wpasupplicant/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/patches/series?rev=973&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/patches/series (original)
+++ wpasupplicant/trunk/debian/patches/series Wed Jan  2 00:09:56 2008
@@ -3,3 +3,4 @@
 02_dbus_group_policy.patch
 20_madwifi_headers.patch
 21_config_driver_madwifi.patch
+30_qt4_combo_box_additem.patch




More information about the Pkg-wpa-devel mailing list