diff options
Diffstat (limited to 'FL/Fl_Table.H')
| -rw-r--r-- | FL/Fl_Table.H | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Table.H b/FL/Fl_Table.H index 2abd685c8..3e3c1d695 100644 --- a/FL/Fl_Table.H +++ b/FL/Fl_Table.H @@ -514,7 +514,7 @@ public: row_header() must also be enabled to allow resizing. */ void row_resize(int flag) { // enable row resizing - _row_resize = flag; + _row_resize = (char)flag; } /** @@ -531,7 +531,7 @@ public: \p col_header() must also be enabled to allow resizing. */ void col_resize(int flag) { // enable col resizing - _col_resize = flag; + _col_resize = (char)flag; } /** @@ -578,7 +578,7 @@ public: If changed, the table is redrawn. */ void row_header(int flag) { - _row_header = flag; + _row_header = (char)flag; table_resized(); redraw(); } @@ -595,7 +595,7 @@ public: If changed, the table is redrawn. */ void col_header(int flag) { - _col_header = flag; + _col_header = (char)flag; table_resized(); redraw(); } |
