aboutsummaryrefslogtreecommitdiff
path: root/test/dw_example.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2011-01-15 16:30:31 +0000
committercorvid <corvid@lavabit.com>2011-01-15 16:30:31 +0000
commitf4b2ec9608576d4442c79780b64747548bb61a74 (patch)
treec72361b1994d23b7cbd719bcaab62a54b070856e /test/dw_example.cc
parent10f9ce7282228193d336228b27b545cebcbcb9e6 (diff)
tests
Diffstat (limited to 'test/dw_example.cc')
-rw-r--r--test/dw_example.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dw_example.cc b/test/dw_example.cc
index 1ce643f8..674252fe 100644
--- a/test/dw_example.cc
+++ b/test/dw_example.cc
@@ -19,8 +19,8 @@
-#include <fltk/Window.h>
-#include <fltk/run.h>
+#include <FL/Fl_Window.H>
+#include <FL/Fl.H>
#include "../dw/core.hh"
#include "../dw/fltkcore.hh"
@@ -33,7 +33,7 @@ int main(int argc, char **argv)
dw::fltk::FltkPlatform *platform = new dw::fltk::FltkPlatform ();
dw::core::Layout *layout = new dw::core::Layout (platform);
- fltk::Window *window = new fltk::Window(200, 300, "Dw Example");
+ Fl_Window *window = new Fl_Window(200, 300, "Dw Example");
window->begin();
dw::fltk::FltkViewport *viewport =
@@ -95,7 +95,7 @@ int main(int argc, char **argv)
window->resizable(viewport);
window->show();
- int errorCode = fltk::run();
+ int errorCode = Fl::run();
delete layout;