Fix WIN32 builds.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5686 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2007-02-09 21:57:06 +00:00
parent 1fc314c5db
commit 72ca38cdd9

View File

@ -294,7 +294,7 @@ int fl_wait(double time_to_wait) {
if (fl_msg.message == fl_wake_msg) {
// Used for awaking wait() from another thread
thread_message_ = (void*)fl_msg.wParam;
if (awake_cb) (*awake_cb)(thread_message_);
if (Fl::awake_cb) (*Fl::awake_cb)(thread_message_);
}
TranslateMessage(&fl_msg);