WIN32 cleanup for 1.1.2 release.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2855 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2002-11-25 16:31:20 +00:00
parent 81147753d1
commit eed1609514

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Counter.cxx,v 1.8.2.3.2.11 2002/11/19 16:37:34 easysw Exp $" // "$Id: Fl_Counter.cxx,v 1.8.2.3.2.12 2002/11/25 16:31:20 easysw Exp $"
// //
// Counter widget for the Fast Light Tool Kit (FLTK). // Counter widget for the Fast Light Tool Kit (FLTK).
// //
@ -137,7 +137,7 @@ int Fl_Counter::handle(int event) {
i = calc_mouseobj(); i = calc_mouseobj();
if (i != mouseobj) { if (i != mouseobj) {
Fl::remove_timeout(repeat_callback, this); Fl::remove_timeout(repeat_callback, this);
mouseobj = (short)i; mouseobj = (uchar)i;
if (i) Fl::add_timeout(INITIALREPEAT, repeat_callback, this); if (i) Fl::add_timeout(INITIALREPEAT, repeat_callback, this);
increment_cb(); increment_cb();
redraw(); redraw();
@ -188,5 +188,5 @@ Fl_Counter::Fl_Counter(int X, int Y, int W, int H, const char* l)
} }
// //
// End of "$Id: Fl_Counter.cxx,v 1.8.2.3.2.11 2002/11/19 16:37:34 easysw Exp $". // End of "$Id: Fl_Counter.cxx,v 1.8.2.3.2.12 2002/11/25 16:31:20 easysw Exp $".
// //