From 921536789236ae2fc4fdbec3626f555405a8cdf6 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Wed, 15 Aug 2001 19:36:52 +0000 Subject: Emit a "changed" signal at the end of this function. Bug #7232. 2001-08-15 Jason Leach * e-folder.c (e_folder_set_child_highlight): Emit a "changed" signal at the end of this function. Bug #7232. svn path=/trunk/; revision=12063 --- shell/ChangeLog | 5 +++++ shell/e-folder.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'shell') diff --git a/shell/ChangeLog b/shell/ChangeLog index 6059608696..511e19dd5f 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-08-15 Jason Leach + + * e-folder.c (e_folder_set_child_highlight): Emit a "changed" + signal at the end of this function. Bug #7232. + 2001-08-15 Aaron Weber * e-shell-view-menu.c (command_about_box): Changed help menus to diff --git a/shell/e-folder.c b/shell/e-folder.c index 017b258766..a73e0193f4 100644 --- a/shell/e-folder.c +++ b/shell/e-folder.c @@ -340,12 +340,12 @@ e_folder_set_child_highlight (EFolder *folder, g_return_if_fail (folder != NULL); g_return_if_fail (E_IS_FOLDER (folder)); - /* FIXME: Doesn't emit CHANGED. */ - if (highlighted) folder->priv->child_highlight++; else folder->priv->child_highlight--; + + gtk_signal_emit (GTK_OBJECT (folder), signals[CHANGED]); } void -- cgit v1.2.3