diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-08-17 21:17:58 +0200 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-10-20 21:29:55 +0000 |
commit | b8bf1a3889912d43c1046514d3eba902758268b1 (patch) | |
tree | 4014860ba805ee5a4104fe125909d10e09494dbb /perl-install | |
parent | 9fa61e8e20bcb0a9c71b70383ae3c2f9829e310e (diff) | |
download | drakx-b8bf1a3889912d43c1046514d3eba902758268b1.tar drakx-b8bf1a3889912d43c1046514d3eba902758268b1.tar.gz drakx-b8bf1a3889912d43c1046514d3eba902758268b1.tar.bz2 drakx-b8bf1a3889912d43c1046514d3eba902758268b1.tar.xz drakx-b8bf1a3889912d43c1046514d3eba902758268b1.zip |
add support for gtkset() on 'ComboBoxText' widgets
for drakpxelinux...
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/mygtk3.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 852f46c5a..9c618000c 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- mygtk3: + o add support for gtkset() on 'ComboBoxText' widgets for drakpxelinux - recognize new kernel-3.16 drivers - switch uid/gid boundary to 1000+ diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index 973880d0b..ae3c3a7c3 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -622,6 +622,7 @@ sub _gtk__WebKit_View { $w; } +sub _gtk__ComboBoxText { &_gtk__ComboBox } sub _gtk__ComboBox { my ($w, $opts, $_class, $action) = @_; |