Skip to content

Commit

Permalink
Fix incorrect difference between branches 1.3 and 1.4 in an Fl_Overla…
Browse files Browse the repository at this point in the history
…y_Window constructor.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12347 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Manolo Gouy authored and Manolo Gouy committed Jul 24, 2017
1 parent 8047691 commit 649a68d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Fl_Overlay_Window.cxx
Expand Up @@ -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)
Expand Down

0 comments on commit 649a68d

Please sign in to comment.