After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 142956 - ComboBoxEntryText displays text column twice in popup
ComboBoxEntryText displays text column twice in popup
Status: RESOLVED FIXED
Product: gtkmm
Classification: Bindings
Component: general
2.4
Other Linux
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2004-05-22 12:36 UTC by Teemu Tervo
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Proposed fix (480 bytes, patch)
2004-05-22 12:38 UTC, Teemu Tervo
none Details | Review

Description Teemu Tervo 2004-05-22 12:36:54 UTC
Here's a test case to reproduce it:
-------------------------------------------

#include <gtkmm/main.h>
#include <gtkmm/window.h>
#include <gtkmm/comboboxentrytext.h>
 
int main(int argc, char **argv)
{
        Gtk::Main kit(argc, argv);
 
        Gtk::ComboBoxEntryText cbet;
        cbet.append_text("Mother");
        cbet.append_text("Mary");
        cbet.append_text("Joseph");
 
        Gtk::Window window;
        window.add(cbet);
        window.show_all();
 
        Gtk::Main::run(window);
}

-------------------------------------------
Comment 1 Teemu Tervo 2004-05-22 12:38:22 UTC
Created attachment 27929 [details] [review]
Proposed fix
Comment 2 Murray Cumming 2004-05-22 20:21:03 UTC
Thanks. Applied. Please patch the Changelog in future.