Skip to content

Commit

Permalink
Remove yet another use of "true" in 1.1.x code.
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2069 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Apr 10, 2002
1 parent f574287 commit 9a17289
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Fl.cxx
@@ -1,5 +1,5 @@
//
// "$Id: Fl.cxx,v 1.24.2.41.2.24 2002/04/10 16:26:33 easysw Exp $"
// "$Id: Fl.cxx,v 1.24.2.41.2.25 2002/04/10 18:51:22 easysw Exp $"
//
// Main event handling code for the Fast Light Tool Kit (FLTK).
//
Expand Down Expand Up @@ -567,7 +567,7 @@ int Fl::handle(int event, Fl_Window* window)
dnd_flag = 1;
belowmouse(0);
dnd_flag = 0;
return true;
return 1;

case FL_DND_RELEASE:
w = belowmouse();
Expand Down Expand Up @@ -889,5 +889,5 @@ void Fl_Window::flush() {
}

//
// End of "$Id: Fl.cxx,v 1.24.2.41.2.24 2002/04/10 16:26:33 easysw Exp $".
// End of "$Id: Fl.cxx,v 1.24.2.41.2.25 2002/04/10 18:51:22 easysw Exp $".
//

0 comments on commit 9a17289

Please sign in to comment.