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/tipwin.cc | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/tipwin.cc')
-rw-r--r-- | src/tipwin.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tipwin.cc b/src/tipwin.cc index 7cfa0844..c2f37431 100644 --- a/src/tipwin.cc +++ b/src/tipwin.cc @@ -34,7 +34,7 @@ static void show_timeout(void*); static void recent_timeout(void*); -/* +/** * Custom tooltip window */ TipWin::TipWin() : Fl_Menu_Window(1, 1) // will autosize @@ -125,7 +125,7 @@ static void recent_timeout(void*) { //--------------------------------------------------------------------------- -/* +/** * A Button sharing a custom tooltip window */ TipWinButton::TipWinButton(int x, int y, int w, int h, const char *l) : @@ -167,7 +167,7 @@ void TipWinButton::set_tooltip(const char *s) //--------------------------------------------------------------------------- -/* +/** * A Light Button sharing a custom tooltip window */ CustButton::CustButton(int x, int y, int w, int h, const char *l) : @@ -202,7 +202,7 @@ void CustButton::hl_color(Fl_Color col) //--------------------------------------------------------------------------- -/* +/** * An Input with custom tooltip window */ TipWinInput::TipWinInput (int x, int y, int w, int h, const char *l) : |