Skip to content

Commit

Permalink
Merge branch 'master' into debian
Browse files Browse the repository at this point in the history
  • Loading branch information
pchilds committed Nov 8, 2012
2 parents 1037708 + 5d5e7e4 commit 38ffea1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gtk2plot/testplotlinear.c
Expand Up @@ -266,7 +266,7 @@ void prt(GtkWidget *widget, gpointer data)
res=gtk_print_operation_run(prto, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_WINDOW(data), &Err);
if (res==GTK_PRINT_OPERATION_RESULT_ERROR)
{
str=g_strdup_printf(_("An error occured while printing: %s."), (Err->message));
str=g_strdup_printf("An error occured while printing: %s.", (Err->message));
gtk_statusbar_push(GTK_STATUSBAR(statusbar), gtk_statusbar_get_context_id(GTK_STATUSBAR(statusbar), str), str);
g_free(str);
g_error_free(Err);
Expand Down
2 changes: 1 addition & 1 deletion gtk2plot/testplotpolar.c
Expand Up @@ -264,7 +264,7 @@ void prt(GtkWidget *widget, gpointer data)
res=gtk_print_operation_run(prto, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_WINDOW(data), &Err);
if (res==GTK_PRINT_OPERATION_RESULT_ERROR)
{
str=g_strdup_printf(_("An error occured while printing: %s."), (Err->message));
str=g_strdup_printf("An error occured while printing: %s.", (Err->message));
gtk_statusbar_push(GTK_STATUSBAR(statusbar), gtk_statusbar_get_context_id(GTK_STATUSBAR(statusbar), str), str);
g_free(str);
g_error_free(Err);
Expand Down
2 changes: 1 addition & 1 deletion gtk3plot/testplotlinear.c
Expand Up @@ -214,7 +214,7 @@ void prt(GtkWidget *widget, gpointer data)
res=gtk_print_operation_run(prto, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_WINDOW(data), &Err);
if (res==GTK_PRINT_OPERATION_RESULT_ERROR)
{
str=g_strdup_printf(_("An error occured while printing: %s."), (Err->message));
str=g_strdup_printf("An error occured while printing: %s.", (Err->message));
gtk_statusbar_push(GTK_STATUSBAR(statusbar), gtk_statusbar_get_context_id(GTK_STATUSBAR(statusbar), str), str);
g_free(str);
g_error_free(Err);
Expand Down
2 changes: 1 addition & 1 deletion gtk3plot/testplotpolar.c
Expand Up @@ -213,7 +213,7 @@ void prt(GtkWidget *widget, gpointer data)
res=gtk_print_operation_run(prto, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_WINDOW(data), &Err);
if (res==GTK_PRINT_OPERATION_RESULT_ERROR)
{
str=g_strdup_printf(_("An error occured while printing: %s."), (Err->message));
str=g_strdup_printf("An error occured while printing: %s.", (Err->message));
gtk_statusbar_push(GTK_STATUSBAR(statusbar), gtk_statusbar_get_context_id(GTK_STATUSBAR(statusbar), str), str);
g_free(str);
g_error_free(Err);
Expand Down

0 comments on commit 38ffea1

Please sign in to comment.