summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2007-05-26 18:59:43 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-05-26 18:59:43 +0000
commit35169d66759027a9f60077a4af6824dc6e7600e7 (patch)
tree46f8297e1ea2f8ad2eb51b6f0bff0d8400f62703
parent8667f45fd7cd320ed90a674dae2a0aab28ba971a (diff)
downloadgtk+-35169d66759027a9f60077a4af6824dc6e7600e7.tar.gz
Document new api
svn path=/trunk/; revision=17932
-rw-r--r--ChangeLog2
-rw-r--r--gtk/gtkprinter.c2
-rw-r--r--gtk/gtkprintsettings.c6
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b8e366ecd8..bb81889836 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2007-05-26 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkprinter.c:
+ * gtk/gtkprintsettings.c:
* gtk/gtkpapersize.c:
* gtk/gtkpagesetup.c:
* gtk/gtknotebook.c:
diff --git a/gtk/gtkprinter.c b/gtk/gtkprinter.c
index 883f40f11e..b7ddcb8a26 100644
--- a/gtk/gtkprinter.c
+++ b/gtk/gtkprinter.c
@@ -811,7 +811,7 @@ _gtk_printer_create_cairo_surface (GtkPrinter *printer,
/**
* gtk_printer_list_papers:
- * @printer:
+ * @printer: a #GtkPrinter
*
* Lists all the paper sizes @printer supports.
* This will return and empty list unless the printer's details are
diff --git a/gtk/gtkprintsettings.c b/gtk/gtkprintsettings.c
index f4b19e718f..321bc7c5bb 100644
--- a/gtk/gtkprintsettings.c
+++ b/gtk/gtkprintsettings.c
@@ -1540,10 +1540,12 @@ gtk_print_settings_new_from_file (const gchar *file_name,
/**
* gtk_print_settings_new_from_key_file:
* @key_file: the #GKeyFile to retrieve the settings from
+ * @group_name: the name of the group to use
* @error: return location for errors, or %NULL
*
- * Reads the print settings from @key_file. Returns a new #GtkPrintSettings
- * object with the restored settings, or %NULL if an error occurred.
+ * Reads the print settings from the group @group_name in @key_file.
+ * Returns a new #GtkPrintSettings object with the restored settings,
+ * or %NULL if an error occurred.
*
* Return value: the restored #GtkPrintSettings
*