summaryrefslogtreecommitdiff
path: root/src/Fl_Slider.cxx
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>1999-12-07 17:53:09 +0000
committerBill Spitzak <spitzak@gmail.com>1999-12-07 17:53:09 +0000
commit3e0db7129ef4c1fc3e869e652b259eb4a556e7d9 (patch)
treedfd65007a5354a58a6a217fe403e1b2a2a3f6deb /src/Fl_Slider.cxx
parent1e3bc4ba57812865f91eef24a47556a08a340b3b (diff)
Removed warning messages from gcc compile
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@942 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Slider.cxx')
-rw-r--r--src/Fl_Slider.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Slider.cxx b/src/Fl_Slider.cxx
index 376692be3..9ef6e0b65 100644
--- a/src/Fl_Slider.cxx
+++ b/src/Fl_Slider.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Slider.cxx,v 1.8.2.3 1999/12/04 12:22:37 mike Exp $"
+// "$Id: Fl_Slider.cxx,v 1.8.2.4 1999/12/07 17:53:09 bill Exp $"
//
// Slider widget for the Fast Light Tool Kit (FLTK).
//
@@ -180,7 +180,7 @@ int Fl_Slider::handle(int event, int x, int y, int w, int h) {
handle_push();
case FL_DRAG: {
int W = (horizontal() ? w : h);
- int H = (horizontal() ? h : w);
+ //int H = (horizontal() ? h : w);
int mx = (horizontal() ? Fl::event_x()-x : Fl::event_y()-y);
int S = int(slider_size_*W+.5);
int X;
@@ -249,5 +249,5 @@ int Fl_Slider::handle(int event) {
}
//
-// End of "$Id: Fl_Slider.cxx,v 1.8.2.3 1999/12/04 12:22:37 mike Exp $".
+// End of "$Id: Fl_Slider.cxx,v 1.8.2.4 1999/12/07 17:53:09 bill Exp $".
//