diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/ui.hh | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/ui.hh')
-rw-r--r-- | src/ui.hh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,7 +28,7 @@ typedef enum { } UIButton; typedef enum { - UI_NORMAL = 0, /* make sure it's compatible with bool */ + UI_NORMAL = 0, /**< make sure it's compatible with bool */ UI_HIDDEN = 1 } UIPanelmode; @@ -43,7 +43,7 @@ class CustTabs; // Class definitions --------------------------------------------------------- -/* +/** * Used to reposition group's widgets when some of them are hidden. * All children get the height of the group but retain their original width. * The resizable child get's the remaining space. @@ -155,7 +155,7 @@ public: UI(int x,int y,int w,int h, const char* label = 0, const UI *cur_ui=NULL); ~UI(); - // To manage what events to catch and which to let pass + /** To manage what events to catch and which to let pass */ int handle(int event); const char *get_location(); |