summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-08 16:49:32 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-08 16:49:32 +0000
commit05a64bfde9fe91587a7f8bd3d32f8577b80c7328 (patch)
tree0bea58ea6cf80640a8d4a8efa2723943b05fa0f6 /gtk
parent8f64d5d223a6ccc60f04e815355c9d3f216a4410 (diff)
downloadnetsurf-05a64bfde9fe91587a7f8bd3d32f8577b80c7328.tar.gz
netsurf-05a64bfde9fe91587a7f8bd3d32f8577b80c7328.tar.bz2
fix up more doxygen errors
Diffstat (limited to 'gtk')
-rw-r--r--gtk/scaffolding.c7
-rw-r--r--gtk/toolbar.c11
-rw-r--r--gtk/treeview.c5
3 files changed, 15 insertions, 8 deletions
diff --git a/gtk/scaffolding.c b/gtk/scaffolding.c
index ff0b2b82c..d18044069 100644
--- a/gtk/scaffolding.c
+++ b/gtk/scaffolding.c
@@ -2257,10 +2257,11 @@ struct nsgtk_scaffolding *nsgtk_new_scaffolding(struct gui_window *toplevel)
return g;
}
-/** set the title in the window
+/**
+ * set the title in the window
*
- * @param gw The gui window to set title on
- * @param title The title to set (may be NULL)
+ * \param gw The gui window to set title on
+ * \param title The title to set (may be NULL)
*/
void gui_window_set_title(struct gui_window *gw, const char *title)
{
diff --git a/gtk/toolbar.c b/gtk/toolbar.c
index 845344757..5bc5f6c8d 100644
--- a/gtk/toolbar.c
+++ b/gtk/toolbar.c
@@ -456,11 +456,14 @@ void nsgtk_toolbar_clear_toolbar(GtkWidget *widget, gpointer data)
}
/**
- * add item to toolbar
- * \param g the scaffolding whose toolbar an item is added to
- * \param i the location in the toolbar
+ * add item to toolbar.
+ *
* the function should be called, when multiple items are being added,
- * in ascending order
+ * in ascending order.
+ *
+ * \param g the scaffolding whose toolbar an item is added to.
+ * \param i the location in the toolbar.
+ * \param theme The theme in use.
*/
void nsgtk_toolbar_add_item_to_toolbar(struct nsgtk_scaffolding *g, int i,
struct nsgtk_theme *theme)
diff --git a/gtk/treeview.c b/gtk/treeview.c
index fa8bd8f3c..71e63184f 100644
--- a/gtk/treeview.c
+++ b/gtk/treeview.c
@@ -77,7 +77,10 @@ static void nsgtk_tree_redraw_request(int x, int y, int width, int height, void
/**
* Updates the tree owner following a tree resize
*
- * \param tree the tree to update the owner of
+ * \param tree the tree to update the owner of
+ * \param width The width to resize to.
+ * \param height The height to resize to.
+ * \param data The treeview resize.
*/
static void nsgtk_tree_resized(struct tree *tree, int width, int height, void *data)
{