VERY simple yet confusing segfault
- From: Chameleon Man <harb37 mailinator com>
- To: gtkmm-list gnome org
- Subject: VERY simple yet confusing segfault
- Date: Fri, 13 Jun 2008 06:44:59 -0700 (PDT)
Hello everyone. I have a seemingly simple problem that is stumping me. I
compiled and ran the example code for the Gtk::TextView property
http://www.gtkmm.org/docs/gtkmm-2.4/docs/tutorial/html/sec-textview-examples.html
here . I tried building off of this by adding a Gtk::Entry widget to the
class in the header file...
class ExampleWindow : public Gtk::Window
{
public:
ExampleWindow();
virtual ~ExampleWindow();
protected:
virtual void fill_buffers();
//Signal handlers:
virtual void on_button_quit();
virtual void on_button_buffer1();
virtual void on_button_buffer2();
//Child widgets:
Gtk::VBox m_VBox;
Gtk::ScrolledWindow m_ScrolledWindow;
Gtk::TextView m_TextView;
Glib::RefPtr<Gtk::TextBuffer> m_refTextBuffer1, m_refTextBuffer2;
Gtk::HButtonBox m_ButtonBox;
Gtk::Entry m_Entry;
Gtk::Button m_Button_Quit, m_Button_Buffer1, m_Button_Buffer2;
};
With that one little change to the header file, the program compiles but
segfaults at this location. Something else that I might note is that I tried
the converse of this (tried adding a textview widget inside the entry
example code) and I got the same results. Is there something I'm missing?
--
View this message in context: http://www.nabble.com/VERY-simple-yet-confusing-segfault-tp17823763p17823763.html
Sent from the Gtkmm mailing list archive at Nabble.com.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]