summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-09-09 11:25:33 +0200
committerDave Davenport <qball@gmpclient.org>2017-09-09 11:25:33 +0200
commita97831e297b64b4f26f1cdd649cb86762d98ca8c (patch)
tree86aa90cd4c5b0434994ba94c62c4c786c92e45f0 /include
parent4a30d2a50731640f181615e91b5fcfdfa1a1f0da (diff)
Fix doxygen documentation
Diffstat (limited to 'include')
-rw-r--r--include/widgets/box.h1
-rw-r--r--include/widgets/container.h2
-rw-r--r--include/widgets/listview.h1
-rw-r--r--include/widgets/scrollbar.h2
-rw-r--r--include/widgets/textbox.h1
5 files changed, 5 insertions, 2 deletions
diff --git a/include/widgets/box.h b/include/widgets/box.h
index 0bc34f8c..92ea407c 100644
--- a/include/widgets/box.h
+++ b/include/widgets/box.h
@@ -48,6 +48,7 @@
typedef struct _box box;
/**
+ * @param parent The widgets parent.
* @param name The name of the widget.
* @param type The packing direction of the newly created box.
*
diff --git a/include/widgets/container.h b/include/widgets/container.h
index e0233562..8347dc31 100644
--- a/include/widgets/container.h
+++ b/include/widgets/container.h
@@ -44,7 +44,7 @@
typedef struct _window container;
/**
- * @parem parent The widget's parent
+ * @param parent The widget's parent
* @param name The name of the widget.
*
* @returns a newly created container, free with #widget_free
diff --git a/include/widgets/listview.h b/include/widgets/listview.h
index 2eda9d43..e21f474f 100644
--- a/include/widgets/listview.h
+++ b/include/widgets/listview.h
@@ -69,6 +69,7 @@ typedef void ( *listview_update_callback )( textbox *tb, unsigned int entry, voi
typedef void ( *listview_mouse_activated_cb )( listview *, gboolean, void * );
/**
+ * @param parent The widget's parent.
* @param name The name of the to be created widget.
* @param cb The update callback.
* @param udata The user data to pass to the callback
diff --git a/include/widgets/scrollbar.h b/include/widgets/scrollbar.h
index 0339abf2..f7b45a34 100644
--- a/include/widgets/scrollbar.h
+++ b/include/widgets/scrollbar.h
@@ -50,7 +50,7 @@ typedef struct _scrollbar
} scrollbar;
/**
- * @parem parent The parent widget.
+ * @param parent The parent widget.
* @param name The name of the widget.
*
* Create a new scrollbar
diff --git a/include/widgets/textbox.h b/include/widgets/textbox.h
index c238fb5e..7e2314f0 100644
--- a/include/widgets/textbox.h
+++ b/include/widgets/textbox.h
@@ -114,6 +114,7 @@ typedef enum
} TextBoxFontType;
/**
+ * @param parent The widget's parent.
* @param type The type of the to be created widget.
* @param name The name of the to be created widget.
* @param flags #TextboxFlags indicating the type of textbox.