This only handle limited depth
| 144 | |
| 145 | // This only handle limited depth |
| 146 | static GtkTreePath* |
| 147 | tree_path_new_from_index(const hb_preset_index_t *path) |
| 148 | { |
| 149 | if (path == NULL || path->depth == 0) |
| 150 | return NULL; |
| 151 | |
| 152 | return gtk_tree_path_new_from_indicesv((int*)path->index, path->depth); |
| 153 | } |
| 154 | |
| 155 | #if 0 |
| 156 | void |
no outgoing calls
no test coverage detected