From 87316ea15ae9b6d777f09410399045f8efbd3707 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 5 Nov 2011 15:27:23 +0100 Subject: [PATCH] Removed locale changing. --- src/rptprint.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/rptprint.c b/src/rptprint.c index ec489e8..27dec1a 100644 --- a/src/rptprint.c +++ b/src/rptprint.c @@ -442,13 +442,10 @@ rpt_print_print (RptPrint *rpt_print, GtkWindow *transient) if (priv->output_type == RPT_OUTPUT_GTK || priv->output_type == RPT_OUTPUT_GTK_DEFAULT_PRINTER) { - gchar *locale_old; - gchar *locale_num; GtkPrintOperation *operation; GError *error; GtkPrintOperationResult res; - locale_old = setlocale (LC_ALL, NULL); gtk_init (0, NULL); operation = gtk_print_operation_new (); @@ -465,15 +462,9 @@ rpt_print_print (RptPrint *rpt_print, GtkWindow *transient) } error = NULL; - locale_num = setlocale (LC_NUMERIC, "C"); res = gtk_print_operation_run (operation, (priv->output_type == RPT_OUTPUT_GTK ? GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG : GTK_PRINT_OPERATION_ACTION_PRINT), transient, &error); - setlocale (LC_NUMERIC, locale_num); - setlocale (LC_ALL, locale_old); - - g_free (locale_old); - g_free (locale_num); if (priv->output_type == RPT_OUTPUT_GTK && res == GTK_PRINT_OPERATION_RESULT_CANCEL) -- 2.49.0