diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-03-05 22:35:57 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-03-05 22:35:57 +0800 |
commit | 455d1eabc1ab7f5a8676bb027e6f3c7b79327b01 (patch) | |
tree | 8d83afeee8e71b457ab177449be77790cf9e3e0a /shell/e-storage-set-view.c | |
parent | a9be26c0f86451475ffa09fbf387ba1d30c3c9ee (diff) | |
download | gsoc2013-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
Diffstat (limited to 'shell/e-storage-set-view.c')
-rw-r--r-- | shell/e-storage-set-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |