Comment 14 for bug 522372

Revision history for this message
ekilfoil (ekilfoil) wrote :

This bug is in gtkmm (libgtkmm-2.4-1c2a) 2.19.4. According to https://bugs.launchpad.net/ubuntu/+source/regexxer/+bug/521412 this has been fixed in 2.19.5.

This is a critical bug and gtkmm needs to a version bump for Lucid since any gtkmm app that uses Gtk::TextBuffer will probably have the same problem (including my project).

Code to reproduce:

#include <gtkmm.h>

int main(int argc, char *argv[]) {
 Gtk::Main kit(argc, argv);
 Glib::RefPtr<Gtk::TextBuffer> buf = Gtk::TextBuffer::create();
}

Command to compile above program:
gcc `pkg-config --cflags --libs gtkmm-2.4` bug.cpp