diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-11-25 16:31:20 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-11-25 16:31:20 +0000 |
| commit | eed1609514576e927dbbd015ac8783bd27ee3406 (patch) | |
| tree | fae494a10e0960fd7d0f0aeafa0c4ba360f42a71 | |
| parent | 81147753d1fb4db8e96f77523237b200b531fc52 (diff) | |
WIN32 cleanup for 1.1.2 release.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2855 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_Counter.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Counter.cxx b/src/Fl_Counter.cxx index 038df36e3..ac99ea7ae 100644 --- a/src/Fl_Counter.cxx +++ b/src/Fl_Counter.cxx @@ -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). // @@ -137,7 +137,7 @@ int Fl_Counter::handle(int event) { i = calc_mouseobj(); if (i != mouseobj) { Fl::remove_timeout(repeat_callback, this); - mouseobj = (short)i; + mouseobj = (uchar)i; if (i) Fl::add_timeout(INITIALREPEAT, repeat_callback, this); increment_cb(); 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 $". // |
