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
This commit is contained in:
Manolo Gouy 2017-07-24 06:32:26 +00:00
parent 8047691006
commit 649a68dc0c

View File

@ -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)