diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-08-12 19:30:44 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-08-12 19:30:44 +0000 |
| commit | f78c91e372d77cdd2ffbce2ca367a42001604ddd (patch) | |
| tree | f785fec3e1ee5d5048ac5ba7f707fd6529ce30f8 /src | |
| parent | 0c6c69ffbc39ea21accb320133c436e01ffdde38 (diff) | |
OSX compile fix.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2574 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx index 121e33605..d8c2a749e 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl.cxx,v 1.24.2.41.2.44 2002/08/09 01:09:48 easysw Exp $" +// "$Id: Fl.cxx,v 1.24.2.41.2.45 2002/08/12 19:30:44 easysw Exp $" // // Main event handling code for the Fast Light Tool Kit (FLTK). // @@ -717,8 +717,8 @@ void Fl_Window::hide() { // remove all childwindow links for ( Fl_X *pc = Fl_X::first; pc; pc = pc->next ) { - if ( pc->xidNext == x ) pc->xidNext = x->xidNext; - if ( pc->xidChildren == x ) pc->xidChildren = x->xidNext; + if ( pc->xidNext == ip ) pc->xidNext = ip->xidNext; + if ( pc->xidChildren == ip ) pc->xidChildren = ip->xidNext; } #endif // __APPLE__ @@ -949,5 +949,5 @@ void Fl_Window::flush() { } // -// End of "$Id: Fl.cxx,v 1.24.2.41.2.44 2002/08/09 01:09:48 easysw Exp $". +// End of "$Id: Fl.cxx,v 1.24.2.41.2.45 2002/08/12 19:30:44 easysw Exp $". // |
