summaryrefslogtreecommitdiff
path: root/gtk/gtkprinter.c
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2007-12-28 17:29:53 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-12-28 17:29:53 +0000
commit32530a9f78d43cfe358749e3512d499aedbb9b99 (patch)
tree28beb32f603b86e0cc693631ca9d7e8b7905e7c6 /gtk/gtkprinter.c
parent81b82a676f1107a19cd70fbe18a873b4b8762d63 (diff)
downloadgtk+-32530a9f78d43cfe358749e3512d499aedbb9b99.tar.gz
More default property value fixes
svn path=/trunk/; revision=19277
Diffstat (limited to 'gtk/gtkprinter.c')
-rw-r--r--gtk/gtkprinter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkprinter.c b/gtk/gtkprinter.c
index 0e4bf3629d..3c20f28aba 100644
--- a/gtk/gtkprinter.c
+++ b/gtk/gtkprinter.c
@@ -118,7 +118,7 @@ gtk_printer_class_init (GtkPrinterClass *class)
g_param_spec_string ("name",
P_("Name"),
P_("Name of the printer"),
- NULL,
+ "",
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_BACKEND,
@@ -153,21 +153,21 @@ gtk_printer_class_init (GtkPrinterClass *class)
g_param_spec_string ("state-message",
P_("State Message"),
P_("String giving the current state of the printer"),
- NULL,
+ "",
GTK_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_LOCATION,
g_param_spec_string ("location",
P_("Location"),
P_("The location of the printer"),
- NULL,
+ "",
GTK_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_ICON_NAME,
g_param_spec_string ("icon-name",
P_("Icon Name"),
P_("The icon name to use for the printer"),
- NULL,
+ "",
GTK_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_JOB_COUNT,