aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-29 06:23:35 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-29 06:23:35 +0800
commit8ccc292dd08a270e52db4d40ed31300c3c8084d4 (patch)
tree4cbbd15eccae96c42b4bd0a27d8f307cd1d21470
parentc5b890906a03b40fae1ab2c320c1ed5c2b7c5b68 (diff)
downloadgsoc2013-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
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c9
2 files changed, 7 insertions, 9 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 5fc474210c..f374bcf76a 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+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).
+
2002-11-26 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/e-contact-quick-add.c: add include for
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);