summaryrefslogtreecommitdiff
path: root/fluid/widgets/Formula_Input.h
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2025-07-08 15:07:18 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2025-07-08 15:25:14 +0200
commit5d68428a0058649f07c9be3053bd58fd3462d6d9 (patch)
treed411546fba10c3f661978d96cf03211a92406296 /fluid/widgets/Formula_Input.h
parent3cf5a302fd2225b8d2622eb40e91262f4e7557c1 (diff)
Fix trailing whitespace and convert a few tabs to spaces
... according to CMP
Diffstat (limited to 'fluid/widgets/Formula_Input.h')
-rw-r--r--fluid/widgets/Formula_Input.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/fluid/widgets/Formula_Input.h b/fluid/widgets/Formula_Input.h
index 060c1e157..5df30b5af 100644
--- a/fluid/widgets/Formula_Input.h
+++ b/fluid/widgets/Formula_Input.h
@@ -47,19 +47,19 @@ class Formula_Input : public Fl_Input
int eval_var(uchar *&s) const;
int eval(uchar *&s, int prio) const;
int eval(const char *s) const;
-
+
public:
Formula_Input(int x, int y, int w, int h, const char *l = nullptr);
/** Return the text in the widget text field. */
const char *text() const { return Fl_Input::value(); }
-
+
/** Set the text in the text field */
void text(const char *v) { Fl_Input::value(v); }
-
+
int value() const;
void value(int v);
-
+
/** Set the general callback for this widget. */
void callback(Fl_Callback *cb) { user_callback_ = cb; }