summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2017-07-24 06:32:26 +0000
committerManolo Gouy <Manolo>2017-07-24 06:32:26 +0000
commit649a68dc0cfa6014370694a4950f0d21e5bda07d (patch)
treeb501f35f4cda7d2fec1a6880032b1fbc9fe565d9
parent80476910061916587b1cfb2f974d01771867989f (diff)
Fix incorrect difference between branches 1.3 and 1.4 in an Fl_Overlay_Window constructor.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12347 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/Fl_Overlay_Window.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Fl_Overlay_Window.cxx b/src/Fl_Overlay_Window.cxx
index 31769da68..5e127ec53 100644
--- a/src/Fl_Overlay_Window.cxx
+++ b/src/Fl_Overlay_Window.cxx
@@ -27,11 +27,10 @@
Fl_Overlay_Window::Fl_Overlay_Window(int W, int H, const char *l)
-: Fl_Double_Window(0,0,W,H,l)
+: Fl_Double_Window(W,H,l)
{
overlay_ = 0;
image(0);
- clear_flag(FORCE_POSITION);
}
Fl_Overlay_Window::Fl_Overlay_Window(int X, int Y, int W, int H, const char *l)