diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-08-12 20:48:19 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-08-12 20:48:19 +0000 |
| commit | 0c1ff39ccd194cf8338798575e4a509b592b41c9 (patch) | |
| tree | 00aaa804f0beed076df0f4046a632e57f71aeb3e /src | |
| parent | 5ecf5cde986ddfff540e33008bdc4d0803ba56a7 (diff) | |
Fix from Albrecht for old cast code that didn't get changed from "w" to
"wi"...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2579 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 99d6f041c..ffc908cd9 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl.cxx,v 1.24.2.41.2.46 2002/08/12 20:45:28 easysw Exp $" +// "$Id: Fl.cxx,v 1.24.2.41.2.47 2002/08/12 20:48:19 easysw Exp $" // // Main event handling code for the Fast Light Tool Kit (FLTK). // @@ -565,11 +565,11 @@ int Fl::handle(int e, Fl_Window* window) return 1; case FL_SHOW: - ((Fl_Widget*)w)->show(); + wi->show(); return 1; case FL_HIDE: - ((Fl_Widget*)w)->hide(); + wi->hide(); return 1; case FL_PUSH: @@ -949,5 +949,5 @@ void Fl_Window::flush() { } // -// End of "$Id: Fl.cxx,v 1.24.2.41.2.46 2002/08/12 20:45:28 easysw Exp $". +// End of "$Id: Fl.cxx,v 1.24.2.41.2.47 2002/08/12 20:48:19 easysw Exp $". // |
