diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-19 08:24:38 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-19 08:24:38 +0800 |
commit | e54241baa88fba95c357bdde508c9c924275c3a3 (patch) | |
tree | d1e316669fc02e4e5fba470f6007b9f211ce3524 /my-evolution | |
parent | c3b248ff4bca0b226f1c33896a89243fdec89def (diff) | |
download | gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.gz gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.bz2 gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.lz gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.xz gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.tar.zst gsoc2013-evolution-e54241baa88fba95c357bdde508c9c924275c3a3.zip |
Select next rows
svn path=/trunk/; revision=12965
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 6 | ||||
-rw-r--r-- | my-evolution/e-summary-preferences.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index e293f0d0a7..d2d86d2436 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,5 +1,11 @@ 2001-09-18 Iain Holmes <iain@ximian.com> + * e-summary-preferences.c (weather_remove_clicked_cb): Select the next + row. + (rdf_remove_clicked_cb): Select the next row. + +2001-09-18 Iain Holmes <iain@ximian.com> + * e-summary-preferences.c (mail_remove_clicked_cb): Select the next folder for removal. diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index 3bdb6a6911..e32507fcc5 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -822,11 +822,12 @@ rdf_remove_clicked_cb (GtkButton *button, row = GPOINTER_TO_INT (GTK_CLIST (pd->rdf->shown)->selection->data); p = gtk_clist_get_row_data (GTK_CLIST (pd->rdf->shown), row); gtk_clist_remove (GTK_CLIST (pd->rdf->shown), row); - + pd->summary->preferences->rdf_urls = g_list_remove_link (pd->summary->preferences->rdf_urls, p); g_free (p->data); g_list_free (p); + gtk_clist_select_row (GTK_CLIST (pd->rdf->shown), row, 0); gnome_property_box_changed (pd->box); } @@ -1022,6 +1023,7 @@ weather_remove_clicked_cb (GtkButton *button, g_free (p->data); g_list_free (p); + gtk_clist_select_row (GTK_CLIST (pd->weather->shown), row, 0); gnome_property_box_changed (pd->box); } |