Use g_signal_connect instead of gtk_signal_connect.

2003-02-14  Glynn Foster  <glynn.foster@sun.com>

	* gtk/gtktextview.c: (popup_targets_received): Use g_signal_connect
	instead of gtk_signal_connect.
This commit is contained in:
Glynn Foster
2003-02-14 13:27:45 +00:00
committed by Glynn Foster
parent a9773cd5f6
commit 4cd9b035c7
6 changed files with 27 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2003-02-14 Glynn Foster <glynn.foster@sun.com>
* gtk/gtktextview.c: (popup_targets_received): Use g_signal_connect
instead of gtk_signal_connect.
2003-02-12 Christian Rose <menthos@menthos.com>
* configure.in: Added "yi" to ALL_LINGUAS.

View File

@@ -1,3 +1,8 @@
2003-02-14 Glynn Foster <glynn.foster@sun.com>
* gtk/gtktextview.c: (popup_targets_received): Use g_signal_connect
instead of gtk_signal_connect.
2003-02-12 Christian Rose <menthos@menthos.com>
* configure.in: Added "yi" to ALL_LINGUAS.

View File

@@ -1,3 +1,8 @@
2003-02-14 Glynn Foster <glynn.foster@sun.com>
* gtk/gtktextview.c: (popup_targets_received): Use g_signal_connect
instead of gtk_signal_connect.
2003-02-12 Christian Rose <menthos@menthos.com>
* configure.in: Added "yi" to ALL_LINGUAS.

View File

@@ -1,3 +1,8 @@
2003-02-14 Glynn Foster <glynn.foster@sun.com>
* gtk/gtktextview.c: (popup_targets_received): Use g_signal_connect
instead of gtk_signal_connect.
2003-02-12 Christian Rose <menthos@menthos.com>
* configure.in: Added "yi" to ALL_LINGUAS.

View File

@@ -1,3 +1,8 @@
2003-02-14 Glynn Foster <glynn.foster@sun.com>
* gtk/gtktextview.c: (popup_targets_received): Use g_signal_connect
instead of gtk_signal_connect.
2003-02-12 Christian Rose <menthos@menthos.com>
* configure.in: Added "yi" to ALL_LINGUAS.

View File

@@ -6563,8 +6563,8 @@ popup_targets_received (GtkClipboard *clipboard,
gtk_menu_shell_append (GTK_MENU_SHELL (text_view->popup_menu), menuitem);
menuitem = gtk_menu_item_new_with_label (_("Select All"));
gtk_signal_connect (GTK_OBJECT (menuitem), "activate",
GTK_SIGNAL_FUNC (select_all_cb), text_view);
g_signal_connect (G_OBJECT (menuitem), "activate",
G_CALLBACK (select_all_cb), text_view);
gtk_widget_show (menuitem);
gtk_menu_shell_append (GTK_MENU_SHELL (text_view->popup_menu), menuitem);