1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-03 15:34:54 -05:00

Fix doxygen documentation

This commit is contained in:
Dave Davenport 2017-09-09 11:25:33 +02:00
parent 4a30d2a507
commit a97831e297
5 changed files with 5 additions and 2 deletions

View file

@ -48,6 +48,7 @@
typedef struct _box box; typedef struct _box box;
/** /**
* @param parent The widgets parent.
* @param name The name of the widget. * @param name The name of the widget.
* @param type The packing direction of the newly created box. * @param type The packing direction of the newly created box.
* *

View file

@ -44,7 +44,7 @@
typedef struct _window container; typedef struct _window container;
/** /**
* @parem parent The widget's parent * @param parent The widget's parent
* @param name The name of the widget. * @param name The name of the widget.
* *
* @returns a newly created container, free with #widget_free * @returns a newly created container, free with #widget_free

View file

@ -69,6 +69,7 @@ typedef void ( *listview_update_callback )( textbox *tb, unsigned int entry, voi
typedef void ( *listview_mouse_activated_cb )( listview *, gboolean, void * ); 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 name The name of the to be created widget.
* @param cb The update callback. * @param cb The update callback.
* @param udata The user data to pass to the callback * @param udata The user data to pass to the callback

View file

@ -50,7 +50,7 @@ typedef struct _scrollbar
} scrollbar; } scrollbar;
/** /**
* @parem parent The parent widget. * @param parent The parent widget.
* @param name The name of the widget. * @param name The name of the widget.
* *
* Create a new scrollbar * Create a new scrollbar

View file

@ -114,6 +114,7 @@ typedef enum
} TextBoxFontType; } TextBoxFontType;
/** /**
* @param parent The widget's parent.
* @param type The type of the to be created widget. * @param type The type of the to be created widget.
* @param name The name of the to be created widget. * @param name The name of the to be created widget.
* @param flags #TextboxFlags indicating the type of textbox. * @param flags #TextboxFlags indicating the type of textbox.