Browse Source

Fix WIN32 builds.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5686 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
pull/168/head
Michael R Sweet 19 years ago
parent
commit
72ca38cdd9
  1. 2
      src/Fl_win32.cxx

2
src/Fl_win32.cxx

@ -294,7 +294,7 @@ int fl_wait(double time_to_wait) { @@ -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);

Loading…
Cancel
Save