diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-14 07:42:51 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-14 07:42:51 -0400 |
| commit | 8d7eb59fc52782aaaedb83c8ee25b6963a627ff6 (patch) | |
| tree | aa09c0451bb94663f7b1c80c2b486eb69b700651 /redo | |
| parent | de22660ae46b1b8054d37af9150081752b023e16 (diff) | |
g_ptr_array_remove() DOES preserve order; the documentation is bad. Removed that TODO from container_unix.c.
Diffstat (limited to 'redo')
| -rw-r--r-- | redo/container_unix.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/redo/container_unix.c b/redo/container_unix.c index 15a2ecb..c7a71dd 100644 --- a/redo/container_unix.c +++ b/redo/container_unix.c @@ -51,7 +51,6 @@ static void goContainer_add(GtkContainer *container, GtkWidget *widget) static void goContainer_remove(GtkContainer *container, GtkWidget *widget) { gtk_widget_unparent(widget); - /* TODO this won't guarantee order preservation; important if we ever actually use this */ g_ptr_array_remove(GOCONTAINER(container)->children, widget); } |
