diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-06-17 05:19:18 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-06-17 05:19:18 +0000 |
commit | 374e1817344e7ccb62f9cb2cb7348e89a8422a43 (patch) | |
tree | e1f1b88acee51de3208e0d15cb0819b10d1a58bc /modules | |
parent | 9ee7d66fa3b127769a15545efb042efe32bc5591 (diff) | |
download | gtk+-374e1817344e7ccb62f9cb2cb7348e89a8422a43.tar.gz |
Fix a typo: s/Extention/Extension/.
2006-06-17 Matthias Clasen <mclasen@redhat.com>
* modules/printbackends/pdf/gtkprintbackendpdf.c:
* modules/printbackends/lpr/gtkprintbackendlpr.c: Fix a typo:
s/Extention/Extension/.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/printbackends/lpr/gtkprintbackendlpr.c | 2 | ||||
-rw-r--r-- | modules/printbackends/pdf/gtkprintbackendpdf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/printbackends/lpr/gtkprintbackendlpr.c b/modules/printbackends/lpr/gtkprintbackendlpr.c index f864637553..d045208363 100644 --- a/modules/printbackends/lpr/gtkprintbackendlpr.c +++ b/modules/printbackends/lpr/gtkprintbackendlpr.c @@ -411,7 +411,7 @@ lpr_printer_get_options (GtkPrinter *printer, g_object_unref (option); option = gtk_printer_option_new ("gtk-main-page-custom-input", _("Command Line"), GTK_PRINTER_OPTION_TYPE_STRING); - option->group = g_strdup ("GtkPrintDialogExtention"); + option->group = g_strdup ("GtkPrintDialogExtension"); if (settings != NULL && (command = gtk_print_settings_get (settings, "lpr-commandline"))!= NULL) gtk_printer_option_set (option, command); diff --git a/modules/printbackends/pdf/gtkprintbackendpdf.c b/modules/printbackends/pdf/gtkprintbackendpdf.c index cc92c3fabb..1a362a7260 100644 --- a/modules/printbackends/pdf/gtkprintbackendpdf.c +++ b/modules/printbackends/pdf/gtkprintbackendpdf.c @@ -387,7 +387,7 @@ pdf_printer_get_options (GtkPrinter *printer, option = gtk_printer_option_new ("gtk-main-page-custom-input", _("File"), GTK_PRINTER_OPTION_TYPE_FILESAVE); gtk_printer_option_set (option, "output.pdf"); - option->group = g_strdup ("GtkPrintDialogExtention"); + option->group = g_strdup ("GtkPrintDialogExtension"); gtk_printer_option_set_add (set, option); if (settings != NULL && |