aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-03-05 22:35:57 +0800
committerChris Lahey <clahey@src.gnome.org>2001-03-05 22:35:57 +0800
commit455d1eabc1ab7f5a8676bb027e6f3c7b79327b01 (patch)
tree8d83afeee8e71b457ab177449be77790cf9e3e0a
parenta9be26c0f86451475ffa09fbf387ba1d30c3c9ee (diff)
downloadgsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.tar
gsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.tar.gz
gsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.tar.bz2
gsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.tar.lz
gsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.tar.xz
gsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.tar.zst
gsoc2013-evolution-455d1eabc1ab7f5a8676bb027e6f3c7b79327b01.zip
Override cursor_activated signal instead of cursor_changed signal.
2001-03-05 Christopher James Lahey <clahey@ximian.com> * e-storage-set-view.c: Override cursor_activated signal instead of cursor_changed signal. svn path=/trunk/; revision=8554
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-storage-set-view.c8
2 files changed, 9 insertions, 4 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 3843f23c1b..9c0c7d4be5 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-05 Christopher James Lahey <clahey@ximian.com>
+
+ * e-storage-set-view.c: Override cursor_activated signal instead
+ of cursor_changed signal.
+
2001-02-27 Dan Winship <danw@ximian.com>
* main.c (development_warning): Update this again.
diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c
index e31a5e6700..8dcc988234 100644
--- a/shell/e-storage-set-view.c
+++ b/shell/e-storage-set-view.c
@@ -67,7 +67,7 @@ struct _EStorageSetViewPrivate {
GHashTable *type_name_to_pixbuf;
- /* Path of the row selected by the latest "cursor_change" signal. */
+ /* Path of the row selected by the latest "cursor_activated" signal. */
const char *selected_row_path;
gboolean show_folders;
@@ -557,8 +557,8 @@ right_click (ETable *etable,
}
static void
-cursor_change (ETable *table,
- int row)
+cursor_activated (ETable *table,
+ int row)
{
EStorageSetView *storage_set_view;
ETreePath *node;
@@ -879,7 +879,7 @@ class_init (EStorageSetViewClass *klass)
etable_class = E_TABLE_CLASS (klass);
etable_class->right_click = right_click;
- etable_class->cursor_change = cursor_change;
+ etable_class->cursor_activated = cursor_activated;
etable_class->table_drag_begin = table_drag_begin;
etable_class->table_drag_data_get = table_drag_data_get;
etable_class->table_drag_motion = table_drag_motion;