diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-08-22 08:24:03 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-08-22 08:24:03 +0800 |
commit | bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881 (patch) | |
tree | 19c2d3dafac85c07ce59a502b75da3af6e929e95 /widgets/table | |
parent | 5d8ff7ab732d82019e85d4c3821e68a9e9306021 (diff) | |
download | gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.tar gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.tar.gz gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.tar.bz2 gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.tar.lz gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.tar.xz gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.tar.zst gsoc2013-evolution-bfd2e9c92dc1cdc05eafbd5c3e5774d443c9a881.zip |
pass table, not site as the closure for these drag signals, since
2000-08-21 Chris Toshok <toshok@helixcode.com>
* e-table.c (e_table_drag_source_set): pass table, not site as the
closure for these drag signals, since e_table_drag_source_event_cb
assumes it's the table.
svn path=/trunk/; revision=4911
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index e2f7edec5e..bd6d7bc60c 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -1147,11 +1147,11 @@ void e_table_drag_source_set (ETable *table, table->drag_source_button_press_event_id = gtk_signal_connect (GTK_OBJECT (canvas), "button_press_event", GTK_SIGNAL_FUNC (e_table_drag_source_event_cb), - site); + table); table->drag_source_motion_notify_event_id = gtk_signal_connect (GTK_OBJECT (canvas), "motion_notify_event", GTK_SIGNAL_FUNC (e_table_drag_source_event_cb), - site); + table); table->site = site; } |