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 138076 - TreeView::move_column_after needs overload
TreeView::move_column_after needs overload
Status: RESOLVED FIXED
Product: gtkmm
Classification: Bindings
Component: TreeView
2.4
Other All
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2004-03-25 09:46 UTC by Andrew E. Makeev
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch to fix the problem (2.04 KB, patch)
2004-03-25 09:48 UTC, Andrew E. Makeev
none Details | Review

Description Andrew E. Makeev 2004-03-25 09:46:45 UTC
TreeView::move_column_after (TreeViewColumn& column, TreeViewColumn& base_column)

The documentation says that you could send 0 instead of base_column
to move column in the first position of the view. But reference won't
be handled in same manner as pointer, so, overload is needed.
Comment 1 Andrew E. Makeev 2004-03-25 09:48:29 UTC
Created attachment 25932 [details] [review]
Patch to fix the problem

Added overload for move_column_after method
Comment 2 Murray Cumming 2004-03-28 11:00:16 UTC
Thanks. I have committed this, but actually changed the method name to
move_column_to_start(), because that's what it does.