mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-03 12:24:17 +01:00
fixed some Bool flags passed to WINgs functions to always set 1 or 0 values internally
This commit is contained in:
@@ -106,7 +106,7 @@ void WMSetTableColumnConstraints(WMTableColumn *column,
|
||||
|
||||
void WMSetTableColumnEditable(WMTableColumn *column, Bool flag)
|
||||
{
|
||||
column->editable = flag;
|
||||
column->editable = ((flag==0) ? 0 : 1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user