summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/DoubleBufferWindow.h
diff options
context:
space:
mode:
authorJan Darmochwal2010-07-13 17:55:06 +0200
committerJan Darmochwal2010-07-13 17:55:06 +0200
commitf29300c556e541f2bf1b63ed8c6399a6c2044c8d (patch)
tree4a549ef967177e82e6b20536f9484e8461893c7b /fltk/fltk/DoubleBufferWindow.h
parentinitial qt4 version (diff)
downloadvmchooser-f29300c556e541f2bf1b63ed8c6399a6c2044c8d.tar.gz
vmchooser-f29300c556e541f2bf1b63ed8c6399a6c2044c8d.tar.xz
vmchooser-f29300c556e541f2bf1b63ed8c6399a6c2044c8d.zip
qmake -> cmake; (mostly) cosmetic changes
Switched to cmake: CMakeLists.txt in base directory use ./build.sh to build vmchooser (or mkdir -p build; cd build cmake .. && make) updated README removed fltk/ removed libxml2/ removed mesgdisp/ renamed vmchooser/ to src/ moved all header files (.h) from vmchooser/inc/ to src/ added files to repository that must have slipped the last time
Diffstat (limited to 'fltk/fltk/DoubleBufferWindow.h')
-rw-r--r--fltk/fltk/DoubleBufferWindow.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/fltk/fltk/DoubleBufferWindow.h b/fltk/fltk/DoubleBufferWindow.h
deleted file mode 100644
index b3700b3..0000000
--- a/fltk/fltk/DoubleBufferWindow.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// This class is provided for back compatability only with some fltk2.0
-// versions. You can turn on double buffering on a normal window if
-// you want it.
-
-#ifndef fltk_DoubleBufferWindow_h
-#define fltk_DoubleBufferWindow_h
-
-#ifndef fltk_Window_h
-# include "Window.h"
-#endif
-
-namespace fltk {
-
-class DoubleBufferWindow : public Window {
-
-public:
- DoubleBufferWindow(int x, int y, int w, int h, const char*l = 0)
- : Window(x,y,w,h,l) {set_double_buffer();}
-
- DoubleBufferWindow(int w, int h, const char*l = 0)
- : Window(w,h,l) {set_double_buffer();}
-
-};
-
-}
-
-#endif