Avoid future confusions with how default values are set.

This commit is contained in:
Hisham Muhammad
2015-08-12 17:29:32 -03:00
parent e1e3ffad19
commit 0ebe688d24
5 changed files with 29 additions and 19 deletions

View File

@ -58,7 +58,7 @@ Panel* AffinityPanel_new(ProcessList* pl, Affinity* affinity) {
} else {
mode = false;
}
Panel_add(this, (Object*) CheckItem_new(strdup(number), NULL, mode));
Panel_add(this, (Object*) CheckItem_newByVal(strdup(number), mode));
}
return this;
}