mirror of
https://github.com/fltk/fltk.git
synced 2026-05-21 06:21:26 +08:00
fix 64 bit build
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6938 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+3
-3
@@ -273,19 +273,19 @@ char *itoa(int val)
|
||||
|
||||
void tablebox_choice_cb(Fl_Widget *w, void *data)
|
||||
{
|
||||
G_table->table_box((Fl_Boxtype)(int)data);
|
||||
G_table->table_box((Fl_Boxtype)(long)data);
|
||||
G_table->redraw();
|
||||
}
|
||||
|
||||
void widgetbox_choice_cb(Fl_Widget *w, void *data)
|
||||
{
|
||||
G_table->box((Fl_Boxtype)(int)data);
|
||||
G_table->box((Fl_Boxtype)(long)data);
|
||||
G_table->resize(G_table->x(), G_table->y(), G_table->w(), G_table->h());
|
||||
}
|
||||
|
||||
void type_choice_cb(Fl_Widget *w, void *data)
|
||||
{
|
||||
G_table->type((Fl_Table_Row::TableRowSelectMode)(int)data);
|
||||
G_table->type((Fl_Table_Row::TableRowSelectMode)(long)data);
|
||||
}
|
||||
|
||||
Fl_Menu_Item tablebox_choices[] = {
|
||||
|
||||
+1
-1
@@ -92,7 +92,7 @@ static void cb_tree(Fl_Tree*, void*) {
|
||||
//tree->redraw();
|
||||
fprintf(stderr, "TREE CALLBACK: label='%s' userdata=%d\n",
|
||||
item->label(),
|
||||
(int)tree->user_data());
|
||||
(long)tree->user_data());
|
||||
}
|
||||
|
||||
Fl_Value_Slider *labelsize_slider=(Fl_Value_Slider *)0;
|
||||
|
||||
Reference in New Issue
Block a user