diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-09-01 05:11:46 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-09-01 05:11:46 +0000 |
commit | 94eec042676a8e18cebc9af8f27cd251355f4ba4 (patch) | |
tree | 51b9ff698258fc9799413f62fb82589c8d525f0e /gtk/gtkaction.c | |
parent | f4bbe8f0deb8d1c36829acfc791d632d27805f30 (diff) | |
download | gtk+-94eec042676a8e18cebc9af8f27cd251355f4ba4.tar.gz |
Intern some more strings.
2005-09-01 Matthias Clasen <mclasen@redhat.com>
* gdk/*.c: Intern some more strings.
* gtk/gtkintl.h:
* gtk/*.c: Define an I_() macro and use it instead of the
bulky g_intern_static_string().
Diffstat (limited to 'gtk/gtkaction.c')
-rw-r--r-- | gtk/gtkaction.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkaction.c b/gtk/gtkaction.c index c4f67d1e50..6665d893e2 100644 --- a/gtk/gtkaction.c +++ b/gtk/gtkaction.c @@ -132,7 +132,7 @@ gtk_action_get_type (void) }; type = g_type_register_static (G_TYPE_OBJECT, - g_intern_static_string ("GtkAction"), + I_("GtkAction"), &type_info, 0); } return type; @@ -308,7 +308,7 @@ gtk_action_class_init (GtkActionClass *klass) * Since: 2.4 */ action_signals[ACTIVATE] = - g_signal_new ("activate", + g_signal_new (I_("activate"), G_OBJECT_CLASS_TYPE (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE, G_STRUCT_OFFSET (GtkActionClass, activate), NULL, NULL, @@ -798,7 +798,7 @@ connect_proxy (GtkAction *action, GtkWidget *proxy) { g_object_ref (action); - g_object_set_data_full (G_OBJECT (proxy), g_intern_static_string ("gtk-action"), action, + g_object_set_data_full (G_OBJECT (proxy), I_("gtk-action"), action, g_object_unref); /* add this widget to the list of proxies */ @@ -982,7 +982,7 @@ static void disconnect_proxy (GtkAction *action, GtkWidget *proxy) { - g_object_set_data (G_OBJECT (proxy), g_intern_static_string ("gtk-action"), NULL); + g_object_set_data (G_OBJECT (proxy), I_("gtk-action"), NULL); /* remove proxy from list of proxies */ g_signal_handlers_disconnect_by_func (proxy, |