[epiphany] Do not use deprecated GtkButton APIs



commit 167e60123c1024d539dc02f4a16f7de994bd1c29
Author: Xan Lopez <xan gnome org>
Date:   Mon Nov 30 14:28:42 2009 +0200

    Do not use deprecated GtkButton APIs

 src/bookmarks/ephy-bookmark-action.c     |    4 ++--
 src/bookmarks/ephy-bookmark-properties.c |    2 +-
 src/bookmarks/ephy-topic-action.c        |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c
index 90af3b1..2b40dc4 100644
--- a/src/bookmarks/ephy-bookmark-action.c
+++ b/src/bookmarks/ephy-bookmark-action.c
@@ -431,7 +431,7 @@ button_press_cb (GtkWidget *widget,
 {
 	if (event->button == 2)	
 	{
-		gtk_button_pressed (GTK_BUTTON (widget));
+		g_signal_emit_by_name (widget, "button-press-event");
 	}
 
 	return FALSE;
@@ -444,7 +444,7 @@ button_release_cb (GtkWidget *widget,
 {
 	if (event->button == 2)	
 	{
-		gtk_button_released (GTK_BUTTON (widget));
+		g_signal_emit_by_name (widget, "button-release-event");
 	}
 
 	return FALSE;
diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c
index ed8f9b2..76ce001 100644
--- a/src/bookmarks/ephy-bookmark-properties.c
+++ b/src/bookmarks/ephy-bookmark-properties.c
@@ -222,7 +222,7 @@ similar_deactivate_cb (GtkMenuShell *ms,
 		       GtkWidget *button)
 {
 	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), FALSE);
-	gtk_button_released (GTK_BUTTON (button));
+	g_signal_emit_by_name (button, "button-release-event");
 }
 
 static void
diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c
index 32d922f..d812a77 100644
--- a/src/bookmarks/ephy-topic-action.c
+++ b/src/bookmarks/ephy-topic-action.c
@@ -284,7 +284,7 @@ button_deactivate_cb (GtkMenuShell *ms,
 	GtkWidget *window = gtk_widget_get_ancestor (button, GTK_TYPE_WINDOW);
 
 	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), FALSE);
-	gtk_button_released (GTK_BUTTON (button));
+	g_signal_emit_by_name (button, "button-release-event");
 
 	g_object_set_data (G_OBJECT (window),
 			   "active-topic-action-button", NULL);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]