diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-11-18 08:18:11 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-11-18 08:18:11 -0500 |
commit | a8531605db9c0564ff83fd869357ad5d910fb5b5 (patch) | |
tree | b75440f399438f3a236a46f806ac6f32e1e90940 /gtk/gtksearchentry.c | |
parent | 997f0de4d501d4b674155a817350648fa3138430 (diff) | |
download | gtk+-a8531605db9c0564ff83fd869357ad5d910fb5b5.tar.gz |
Some more interning
This avoids more strdups at startup.
Diffstat (limited to 'gtk/gtksearchentry.c')
-rw-r--r-- | gtk/gtksearchentry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtksearchentry.c b/gtk/gtksearchentry.c index deedecf14b..522463e13e 100644 --- a/gtk/gtksearchentry.c +++ b/gtk/gtksearchentry.c @@ -370,7 +370,7 @@ gtk_search_entry_init (GtkSearchEntry *entry) if (GTK_IS_ACCESSIBLE (atk_obj)) atk_object_set_name (atk_obj, _("Search")); - gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (entry)), "search"); + gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (entry)), I_("search")); } /** |