From 4c6de8b5b6f233d7b2298d08886494dc8baea41b Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Thu, 9 Jan 2003 15:08:05 +0000 Subject: [PATCH] r2270: Fix reference counting problem shown up by Gtk+-2.2. --- ROX-Filer/Help/Changes | 4 ++++ ROX-Filer/Help/TODO | 7 +++++++ ROX-Filer/src/options.c | 3 +++ 3 files changed, 14 insertions(+) diff --git a/ROX-Filer/Help/Changes b/ROX-Filer/Help/Changes index b6f05e38..351b5d3a 100644 --- a/ROX-Filer/Help/Changes +++ b/ROX-Filer/Help/Changes @@ -2,6 +2,10 @@ A RISC OS-like filer for X by Thomas Leonard +09-Jan-2003 +~~~~~~~~~~~ +Fix reference counting problem shown up by Gtk+-2.2. + 06-Jan-2003 ~~~~~~~~~~~ Updated German translation (Guido Schimmels). diff --git a/ROX-Filer/Help/TODO b/ROX-Filer/Help/TODO index 21bba9b1..35e4532f 100644 --- a/ROX-Filer/Help/TODO +++ b/ROX-Filer/Help/TODO @@ -43,6 +43,8 @@ Bookmarks: - Show selection groups? - Auto-add recent operations - Drag to Edit window or toolbar icon. Spring loading (Stephen Watson)? +- Scrollbar in edit window if there are many bookmarks +- Short name for bookmarks? Set size of panel icons. @@ -153,6 +155,11 @@ is at the edge of the scree)? SOAP calls to remove pinboard/panel icons? +AppInfo.xml (Christopher Arndt): + + + + LONG TERM diff --git a/ROX-Filer/src/options.c b/ROX-Filer/src/options.c index 6a85befc..961eca57 100644 --- a/ROX-Filer/src/options.c +++ b/ROX-Filer/src/options.c @@ -840,8 +840,11 @@ static void tree_cursor_changed(GtkTreeView *tv, gpointer data) gtk_tree_model_get(model, &iter, 1, &page, -1); if (page) + { gtk_notebook_set_current_page(nbook, gtk_notebook_page_num(nbook, page)); + g_object_unref(page); + } } /* Creates the window and adds the various buttons to it. -- 2.11.4.GIT