Created
January 12, 2014 18:54
-
-
Save zedtux/8388795 to your computer and use it in GitHub Desktop.
Add multiple embedded lines to the parent line in a Gtk::TreeStore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gtk::TreeModel::Row childOne = *( refTreeStore->append( row.children() ) ); | |
| row[ modelColumns.columnId ] = 11; | |
| row[ modelColumns.columnName ] = "Test enfant"; | |
| Gtk::TreeModel::Row childTwo = *( refTreeStore->append( row.children() ) ); | |
| row[ modelColumns.columnId ] = 12; | |
| row[ modelColumns.columnName ] = "Test enfant 2"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment