Fixing _define before _include.

This commit is contained in:
Matthias Melcher 2022-11-06 16:19:53 +01:00
parent 44219594d1
commit c4bb4e192e
1 changed files with 4 additions and 4 deletions

View File

@ -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;