diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-29 06:23:35 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-29 06:23:35 +0800 |
commit | 8ccc292dd08a270e52db4d40ed31300c3c8084d4 (patch) | |
tree | 4cbbd15eccae96c42b4bd0a27d8f307cd1d21470 /addressbook/gui/widgets | |
parent | c5b890906a03b40fae1ab2c320c1ed5c2b7c5b68 (diff) | |
download | gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.tar gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.tar.gz gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.tar.bz2 gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.tar.lz gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.tar.xz gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.tar.zst gsoc2013-evolution-8ccc292dd08a270e52db4d40ed31300c3c8084d4.zip |
remove the button_press_event handler (that did nothing). this makes it so
2002-11-28 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-addressbook-view.c (create_minicard_view): remove
the button_press_event handler (that did nothing). this makes it
so button presses actually get to the canvas (and therefore we can
now drag the lines in the reflow widget).
svn path=/trunk/; revision=18954
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index d85df8a35d..bedb5a685d 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -1088,12 +1088,6 @@ minicard_selection_change (EMinicardViewWidget *widget, EAddressbookView *view) } static void -minicard_button_press (GtkWidget *widget, GdkEventButton *event, EAddressbookView *view) -{ - d(g_print ("Button %d pressed with event type %d\n", event->button, event->type)); -} - -static void minicard_right_click (EMinicardView *minicard_view_item, GdkEvent *event, EAddressbookView *view) { do_popup_menu(view, event); @@ -1122,9 +1116,6 @@ create_minicard_view (EAddressbookView *view) g_signal_connect(minicard_view, "selection_change", G_CALLBACK(minicard_selection_change), view); - g_signal_connect(minicard_view, "button_press_event", - G_CALLBACK(minicard_button_press), view); - g_signal_connect(minicard_view, "right_click", G_CALLBACK(minicard_right_click), view); |