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/.
This commit is contained in:
Matthias Clasen
2006-06-17 05:19:18 +00:00
committed by Matthias Clasen
parent 9ee7d66fa3
commit 374e181734
4 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2006-06-17 Matthias Clasen <mclasen@redhat.com>
* modules/printbackends/pdf/gtkprintbackendpdf.c:
* modules/printbackends/lpr/gtkprintbackendlpr.c: Fix a typo:
s/Extention/Extension/.
* gtk/gtkprintunixdialog.c: Clean up the handling of
printer-specific options. There is just one extension point on the
main tab now, and all options in the GtkPrintDialogExtension

View File

@ -1,5 +1,9 @@
2006-06-17 Matthias Clasen <mclasen@redhat.com>
* modules/printbackends/pdf/gtkprintbackendpdf.c:
* modules/printbackends/lpr/gtkprintbackendlpr.c: Fix a typo:
s/Extention/Extension/.
* gtk/gtkprintunixdialog.c: Clean up the handling of
printer-specific options. There is just one extension point on the
main tab now, and all options in the GtkPrintDialogExtension

View File

@ -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);

View File

@ -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 &&