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 158512 - Gtk::TreeModelFilter -- has no property named root
Gtk::TreeModelFilter -- has no property named root
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-11-16 23:21 UTC by marxista
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description marxista 2004-11-16 23:21:16 UTC
I am using the following code to create a Gtk::TreeModelFilter from a liststore
which has no rows.

    m_ListStoreRef = Gtk::ListStore::create(m_Columns);
    Gtk::TreeModel::Path m_ListStoreRootPath;
    m_ListStoreRootPath.clear();
    assert(m_ListStoreRootPath.empty());
    m_TreeModelFilterRef = Gtk::TreeModelFilter::create(m_ListStoreRef,
m_ListStoreRootPath);

However the Gtk::TreeModelFilter::create spits out "glibmm-WARNING **:
Glib::ConstructParams::ConstructParams(): object class
`gtkmm__GtkTreeModelFilter' has no property named `root'" at runtime.

I have experienced traansient crashes that I believe are due to this.  I believe
a work around would be to create the TreeModelFilter from
gtk_tree_model_filter_new () and setting the path argument to NULL, but I have
not tested this.
Comment 1 Murray Cumming 2004-11-17 08:24:00 UTC
This was fixed in gtkmm 2.4.7, which also has an example.