summaryrefslogtreecommitdiffstats
path: root/fltk-2/include/fltk/compat/FL/Fl_Window.H
diff options
context:
space:
mode:
Diffstat (limited to 'fltk-2/include/fltk/compat/FL/Fl_Window.H')
-rw-r--r--fltk-2/include/fltk/compat/FL/Fl_Window.H22
1 files changed, 0 insertions, 22 deletions
diff --git a/fltk-2/include/fltk/compat/FL/Fl_Window.H b/fltk-2/include/fltk/compat/FL/Fl_Window.H
deleted file mode 100644
index fbb3b84..0000000
--- a/fltk-2/include/fltk/compat/FL/Fl_Window.H
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef Fl_Window_H
-#define Fl_Window_H
-
-#include "Fl_Group.H"
-#include <fltk/Window.h>
-
-class Fl_Window : public fltk::Window {
-
-public:
- Fl_Window(int x, int y, int w, int h, const char*l = 0)
- : fltk::Window(x,y,w,h,l) {begin();}
-
- Fl_Window(int x, int y, const char*l = 0)
- : fltk::Window(x,y,l) {begin();}
-
- void border(bool v) {
- if (!v) clear_border(); // set_border does not work
- }
-};
-
-#endif
-