summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-09-12 04:14:04 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-09-12 04:14:04 +0000
commitd17cb8ac8ab46372f9dad0b723ca80d1c6a0242f (patch)
treee7b9bb184fefb6a6efcdd481f6cba73b40672cc2
parent9977fc50d7a3a0a6d4c9502ab73ddd553c41cac9 (diff)
downloadgtk+-d17cb8ac8ab46372f9dad0b723ca80d1c6a0242f.tar.gz
sets the is_default parameter to the value given by caller. Patch by Marek
* gtk/gtkprinter.c: sets the is_default parameter to the value given by caller. Patch by Marek Kasik svn path=/branches/gtk-2-12/; revision=21365
-rw-r--r--ChangeLog7
-rw-r--r--gtk/gtkprinter.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dd943e62ba..00ea16f702 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,13 @@
Merged from trunk:
+ * gtk/gtkprinter.c: sets the is_default parameter to the value
+ given by caller. Patch by Marek Kasik
+
+2008-09-11 Matthias Clasen <mclasen@redhat.com>
+
+ Merged from trunk:
+
Bug 319849 - gtkcalendar look in RTL locales
* gtk/gtkcalendar.c (calendar_realize_week_numbers),
diff --git a/gtk/gtkprinter.c b/gtk/gtkprinter.c
index 0e4bf3629d..ee700c3b8b 100644
--- a/gtk/gtkprinter.c
+++ b/gtk/gtkprinter.c
@@ -736,7 +736,7 @@ gtk_printer_set_is_default (GtkPrinter *printer,
{
g_return_if_fail (GTK_IS_PRINTER (printer));
- printer->priv->is_default = TRUE;
+ printer->priv->is_default = val;
}
/**