]> Pileus Git - ~andy/gtk/commitdiff
Fix a typo: s/Extention/Extension/.
authorMatthias Clasen <mclasen@redhat.com>
Sat, 17 Jun 2006 05:19:18 +0000 (05:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 17 Jun 2006 05:19:18 +0000 (05:19 +0000)
2006-06-17  Matthias Clasen  <mclasen@redhat.com>

* modules/printbackends/pdf/gtkprintbackendpdf.c:
* modules/printbackends/lpr/gtkprintbackendlpr.c: Fix a typo:
s/Extention/Extension/.

ChangeLog
ChangeLog.pre-2-10
modules/printbackends/lpr/gtkprintbackendlpr.c
modules/printbackends/pdf/gtkprintbackendpdf.c

index 73c2ab06d2ed09aa94660fb0e972b5b8bb94f93c..2aee968239624cb36f2213b6393a6c409e03cfa5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 73c2ab06d2ed09aa94660fb0e972b5b8bb94f93c..2aee968239624cb36f2213b6393a6c409e03cfa5 100644 (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
index f86463755346ac2374830c86f332879e9dfde2d8..d0452083635eaa5137e91bedb4c42914345873ac 100644 (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);
index cc92c3fabb1d747cc1ac642c1965eac4149f00f0..1a362a7260095e2c67f95a96223862900c49e17b 100644 (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 &&