summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-04-10 19:22:45 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-04-10 19:22:45 +0000
commita9b5c825a4b86454fc1aedccb07dd91713ee8873 (patch)
tree304b228034a517984ea65796ba9a147505295e17 /src
parent9a1728905cdd4cd95a6801a9cdd755c67d0755bc (diff)
Do not use false and true in 1.1.x code...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2070 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/fl_dnd_x.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fl_dnd_x.cxx b/src/fl_dnd_x.cxx
index 7766e7b16..034400c4e 100644
--- a/src/fl_dnd_x.cxx
+++ b/src/fl_dnd_x.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_dnd_x.cxx,v 1.5.2.3 2002/03/07 19:22:58 spitzak Exp $"
+// "$Id: fl_dnd_x.cxx,v 1.5.2.4 2002/04/10 19:22:45 easysw Exp $"
//
// Drag & Drop code for the Fast Light Tool Kit (FLTK).
//
@@ -65,7 +65,7 @@ static int dnd_aware(Window& window) {
static int grabfunc(int event) {
if (event == FL_RELEASE) Fl::pushed(0);
- return false;
+ return 0;
}
extern int (*fl_local_grab)(int); // in Fl.cxx
@@ -162,10 +162,10 @@ int Fl::dnd() {
fl_local_grab = 0;
Fl::first_window()->cursor(FL_CURSOR_DEFAULT);
- return true;
+ return 1;
}
//
-// End of "$Id: fl_dnd_x.cxx,v 1.5.2.3 2002/03/07 19:22:58 spitzak Exp $".
+// End of "$Id: fl_dnd_x.cxx,v 1.5.2.4 2002/04/10 19:22:45 easysw Exp $".
//