aboutsummaryrefslogtreecommitdiff
path: root/src/tipwin.hh
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/tipwin.hh
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/tipwin.hh')
-rw-r--r--src/tipwin.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tipwin.hh b/src/tipwin.hh
index d3aeeac5..940dd1f6 100644
--- a/src/tipwin.hh
+++ b/src/tipwin.hh
@@ -6,7 +6,7 @@
#include <FL/Fl_Input.H>
-/*
+/**
* Custom tooltip window
*/
class TipWin : public Fl_Menu_Window {
@@ -29,7 +29,7 @@ public:
extern TipWin *my_tipwin(void);
-/*
+/**
* A Button sharing a custom tooltip window
*/
class TipWinButton : public Fl_Button {
@@ -43,7 +43,7 @@ class TipWinButton : public Fl_Button {
void set_tooltip(const char *s);
};
-/*
+/**
* A button that highlights on mouse over
*/
class CustButton : public TipWinButton {
@@ -55,7 +55,7 @@ public:
};
-/*
+/**
* An Input with custom tooltip window
*/
class TipWinInput : public Fl_Input {