diff --git a/CHANGES b/CHANGES index 28372e665..eda51e5f6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ CHANGES IN FLTK 1.1.4 + - Fixed an IRIX compile problem caused by a missing + #include (STR #157) - FLUID didn't write color/selection_color() calls using the symbolic names when possible, nor did it cast integer colors to Fl_Color (STR #146) diff --git a/src/forms_timer.cxx b/src/forms_timer.cxx index 925a55df9..126a42ef1 100644 --- a/src/forms_timer.cxx +++ b/src/forms_timer.cxx @@ -1,5 +1,5 @@ // -// "$Id: forms_timer.cxx,v 1.4.2.3.2.4 2003/01/30 21:44:31 easysw Exp $" +// "$Id: forms_timer.cxx,v 1.4.2.3.2.5 2003/09/03 19:58:08 easysw Exp $" // // Forms timer object for the Fast Light Tool Kit (FLTK). // @@ -31,14 +31,15 @@ #include #include #ifdef WIN32 -# ifdef __MWERKS__ -# include -# else -# include -# include -# endif +# ifdef __MWERKS__ +# include +# else +# include +# include +# endif #else -# include +# include +# include #endif #include @@ -161,5 +162,5 @@ void Fl_Timer::suspended(char d) { } // -// End of "$Id: forms_timer.cxx,v 1.4.2.3.2.4 2003/01/30 21:44:31 easysw Exp $". +// End of "$Id: forms_timer.cxx,v 1.4.2.3.2.5 2003/09/03 19:58:08 easysw Exp $". //