[libgda] GdauiBasicForm documentation correction



commit ed23e5888478464942d3604b3c7686cdf3109a9f
Author: Vivien Malerba <malerba gnome-db org>
Date:   Sun Aug 29 21:34:03 2010 +0200

    GdauiBasicForm documentation correction

 libgda-ui/gdaui-basic-form.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/libgda-ui/gdaui-basic-form.c b/libgda-ui/gdaui-basic-form.c
index bc13923..b6a7632 100644
--- a/libgda-ui/gdaui-basic-form.c
+++ b/libgda-ui/gdaui-basic-form.c
@@ -1749,23 +1749,23 @@ gdaui_basic_form_entry_grab_focus (GdauiBasicForm *form, GdaHolder *param)
 /**
  * gdaui_basic_form_entry_set_editable
  * @form: a #GdauiBasicForm widget
- * @param: a #GdaHolder object; or %NULL
+ * @holder: a #GdaHolder object; or %NULL
  * @editable: %TRUE if corresponding data entry must be editable
  *
  * Sets the #GdauiDataEntry in @form which corresponds to the
- * @param parameter editable or not. If @param is %NULL, then all the parameters
+ * @holder parameter editable or not. If @holder is %NULL, then all the parameters
  * are concerned.
  *
  * Since: 4.2
  */
 void
-gdaui_basic_form_entry_set_editable (GdauiBasicForm *form, GdaHolder *param, gboolean editable)
+gdaui_basic_form_entry_set_editable (GdauiBasicForm *form, GdaHolder *holder, gboolean editable)
 {
 	g_return_if_fail (GDAUI_IS_BASIC_FORM (form));
 
-	if (param) {
+	if (holder) {
 		SingleEntry *sentry;
-		sentry = get_single_entry_for_holder (form, param);
+		sentry = get_single_entry_for_holder (form, holder);
 		if (sentry)
 			gdaui_data_entry_set_editable (sentry->entry, editable);
 	}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]