summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-05-01 19:44:01 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-05-01 19:44:01 +0000
commit11f56a0dc0a5490af74d0a7483664ce40b3df221 (patch)
treef4a58f28c01eab57e2c7e0d4e7ed630480ca4c30 /src
parent30b61c9e035015a4bfb413a3de59db85b3071385 (diff)
Possible BCC fix; have to check the change...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2167 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_win32.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index fbc80efb9..6c9f21fe3 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_win32.cxx,v 1.33.2.37.2.29 2002/04/30 12:26:33 easysw Exp $"
+// "$Id: Fl_win32.cxx,v 1.33.2.37.2.30 2002/05/01 19:44:01 easysw Exp $"
//
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
//
@@ -123,7 +123,9 @@ static fd_set fdsets[3];
#define POLLOUT 4
#define POLLERR 8
-extern class FLDropTarget flDropTarget;
+class FLDropTarget : public IDropTarget;
+
+extern FLDropTarget flDropTarget;
static int nfds = 0;
static int fd_array_size = 0;
@@ -1181,5 +1183,5 @@ void Fl_Window::make_current() {
}
//
-// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.29 2002/04/30 12:26:33 easysw Exp $".
+// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.30 2002/05/01 19:44:01 easysw Exp $".
//