diff options
Diffstat (limited to 'gtk/gtktreednd.c')
-rw-r--r-- | gtk/gtktreednd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtktreednd.c b/gtk/gtktreednd.c index 2431c950a2..4e5c2715d6 100644 --- a/gtk/gtktreednd.c +++ b/gtk/gtktreednd.c @@ -20,6 +20,7 @@ #include <config.h> #include <string.h> #include "gtktreednd.h" +#include "gtkintl.h" #include "gtkalias.h" GType @@ -42,7 +43,7 @@ gtk_tree_drag_source_get_type (void) NULL }; - our_type = g_type_register_static (G_TYPE_INTERFACE, g_intern_static_string ("GtkTreeDragSource"), + our_type = g_type_register_static (G_TYPE_INTERFACE, I_("GtkTreeDragSource"), &our_info, 0); } @@ -70,7 +71,7 @@ gtk_tree_drag_dest_get_type (void) NULL }; - our_type = g_type_register_static (G_TYPE_INTERFACE, g_intern_static_string ("GtkTreeDragDest"), &our_info, 0); + our_type = g_type_register_static (G_TYPE_INTERFACE, I_("GtkTreeDragDest"), &our_info, 0); } return our_type; |