diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
commit | f8794ccccadc91bd37a4fe19577fc789cf0d0107 (patch) | |
tree | 47fea3e572b4614ca5aada3be8a53ea671e34980 /gtk/gtkprintoperation.c | |
parent | e5afc7e33198a7b694e4177de7802e80d0be1aec (diff) | |
download | gtk+-f8794ccccadc91bd37a4fe19577fc789cf0d0107.tar.gz |
Improve consistency of signal and property names
Diffstat (limited to 'gtk/gtkprintoperation.c')
-rw-r--r-- | gtk/gtkprintoperation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index c6cecce8dc..1b403d0d92 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -928,7 +928,7 @@ gtk_print_operation_class_init (GtkPrintOperationClass *class) PROP_CURRENT_PAGE, g_param_spec_int ("current-page", P_("Current Page"), - P_("The current page in the document."), + P_("The current page in the document"), -1, G_MAXINT, -1, @@ -1692,7 +1692,7 @@ gtk_print_operation_set_export_filename (GtkPrintOperation *op, g_free (priv->export_filename); priv->export_filename = g_strdup (filename); - g_object_notify (G_OBJECT (op), "export_filename"); + g_object_notify (G_OBJECT (op), "export-filename"); } /* Creates the initial page setup used for printing unless the |