Small mod to Silence compiler warnings on Tiger/OSX (STR#2428)

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7711 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Greg Ercolano 2010-10-09 01:31:38 +00:00
parent 9f8bbb2a11
commit 2eb064fa45

View File

@ -80,7 +80,7 @@ class ScrollBarSizeTest : public Fl_Group {
}
void slide_cb2(Fl_Value_Slider *in) {
const char *label = in->label();
int val = in->value();
int val = int(in->value());
//fprintf(stderr, "VAL='%d'\n",val);
if ( strcmp(label,"A: Scroll Size") == 0 ) {
brow_a->scrollbar_size(val);