diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2016-06-20 16:57:07 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2016-06-20 16:57:07 +0000 |
| commit | b65581bd7a768c78115a8a0a807e79a2ee91e80e (patch) | |
| tree | bad841eeb4a869b91df047e5d98d00f063ba79f2 /src | |
| parent | [Bug #1574561] Italian translation updates for 0.92.x. (diff) | |
| download | inkscape-b65581bd7a768c78115a8a0a807e79a2ee91e80e.tar.gz inkscape-b65581bd7a768c78115a8a0a807e79a2ee91e80e.zip | |
Fixing missing gettext keyword (regression introduced rev. 14057).
(bzr r14997)
Diffstat (limited to 'src')
| -rw-r--r-- | src/widgets/paintbucket-toolbar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/paintbucket-toolbar.cpp b/src/widgets/paintbucket-toolbar.cpp index eb55287c4..5cb2dd58b 100644 --- a/src/widgets/paintbucket-toolbar.cpp +++ b/src/widgets/paintbucket-toolbar.cpp @@ -127,7 +127,7 @@ void sp_paintbucket_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions iterator != channel_list.end(); ++iterator ) { GtkTreeIter iter; gtk_list_store_append( model, &iter ); - gtk_list_store_set( model, &iter, 0, (*iterator).c_str(), 1, count, -1 ); + gtk_list_store_set( model, &iter, 0, _((*iterator).c_str()), 1, count, -1 ); count++; } @@ -193,7 +193,7 @@ void sp_paintbucket_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions iterator != gap_list.end(); ++iterator ) { GtkTreeIter iter; gtk_list_store_append( model, &iter ); - gtk_list_store_set( model, &iter, 0, (*iterator).c_str(), 1, count, -1 ); + gtk_list_store_set( model, &iter, 0, _((*iterator).c_str()), 1, count, -1 ); count++; } EgeSelectOneAction* act2 = ege_select_one_action_new( "AutoGapAction", _("Close gaps"), (""), NULL, GTK_TREE_MODEL(model) ); |
