summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-03-23 16:14:35 +0000
committerManolo Gouy <Manolo>2016-03-23 16:14:35 +0000
commit6608db0b0c88fb01a903c47b9e1bbed477766ec2 (patch)
tree7a09e9b7e9d568e2b06092d5850850044bcb9ecf /test
parentc2eb9d730f7bafa7a701ddaa4c094978c57f41af (diff)
Rewrite Fl_Window::border(int) under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11409 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/fullscreen.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx
index 0b2ce0e80..121b0ace4 100644
--- a/test/fullscreen.cxx
+++ b/test/fullscreen.cxx
@@ -163,11 +163,6 @@ void border_cb(Fl_Widget *o, void *p) {
Fl_Window *w = (Fl_Window *)p;
int d = ((Fl_Button *)o)->value();
w->border(d);
-#if defined(WIN32) || defined(__APPLE__)
- int wx = w->x(), wy = w->y();
- w->hide(); w->show();
- w->position(wx, wy);
-#endif
}
Fl_Button *border_button;