diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-11-06 16:19:53 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2022-11-06 16:19:53 +0100 |
| commit | c4bb4e192ed4661f4a74e31b1f5ae8116c59cc9e (patch) | |
| tree | fe00e64cfc94dffb0a0a39feb6993d5aaa6b45c8 | |
| parent | 44219594d18e8c66624be8021fb436b130b14b26 (diff) | |
Fixing _define before _include.
| -rw-r--r-- | test/resizebox.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/resizebox.cxx b/test/resizebox.cxx index c698ac07a..1b447af81 100644 --- a/test/resizebox.cxx +++ b/test/resizebox.cxx @@ -14,10 +14,6 @@ // https://www.fltk.org/bugs.php // -#define W1 (big ? 60 : 40) -#define B 0 -#define W3 (5*W1+6*B) - #include <FL/Fl.H> #include <FL/Fl_Double_Window.H> #include <FL/Fl_Box.H> @@ -25,6 +21,10 @@ #include <FL/fl_draw.H> #include <FL/fl_message.H> +#define W1 (big ? 60 : 40) +#define B 0 +#define W3 (5*W1+6*B) + Fl_Double_Window *window; Fl_Box *box; |
