summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-09-04 04:26:02 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-09-04 04:26:02 +0000
commit8d8acd2fc3b6eea9d6964878c26de6bf4bb2a537 (patch)
tree744a9709923c171f26739480f00e4a3873598ca7
parent45226f958342d9793302a46834017d2c596055d1 (diff)
downloadgtk+-8d8acd2fc3b6eea9d6964878c26de6bf4bb2a537.tar.gz
More doc fixes
svn path=/trunk/; revision=21278
-rw-r--r--ChangeLog2
-rw-r--r--gtk/gtkcolorseldialog.c8
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index fc13dae529..c489dbe495 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
2008-09-03 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkcolorseldialog.c: More doc fixes
* gtk/gtktestutils.c: Fix a typo in the docs.
diff --git a/gtk/gtkcolorseldialog.c b/gtk/gtkcolorseldialog.c
index b89ebf2f87..977cb1585e 100644
--- a/gtk/gtkcolorseldialog.c
+++ b/gtk/gtkcolorseldialog.c
@@ -189,7 +189,7 @@ gtk_color_selection_dialog_new (const gchar *title)
/**
* gtk_color_selection_dialog_get_color_selection:
- * @colorseldiag: a #GtkColorSelectionDialog
+ * @colorsel: a #GtkColorSelectionDialog
*
* Retrieves the #GtkColorSelection widget embedded in the dialog.
*
@@ -198,11 +198,11 @@ gtk_color_selection_dialog_new (const gchar *title)
* Since: 2.14
**/
GtkWidget*
-gtk_color_selection_dialog_get_color_selection (GtkColorSelectionDialog *colorseldiag)
+gtk_color_selection_dialog_get_color_selection (GtkColorSelectionDialog *colorsel)
{
- g_return_val_if_fail (GTK_IS_COLOR_SELECTION_DIALOG (colorseldiag), NULL);
+ g_return_val_if_fail (GTK_IS_COLOR_SELECTION_DIALOG (colorsel), NULL);
- return colorseldiag->colorsel;
+ return colorsel->colorsel;
}
static void