Logic inversion from "if true" to "if not false"

r2030 | dcl | 2007-06-27 10:59:52 +1000 (Wed, 27 Jun 2007) | 2 lines
This commit is contained in:
Douglas Clowes
2007-06-27 10:59:52 +10:00
parent d27a9cb9b6
commit 4ce55c17ac

View File

@@ -7,11 +7,11 @@ set nodename [file tail $path];
set type [getdataType $path]
set prefix [string repeat " " $indent]
set newIndent [expr $indent + 2]
set control "false"
set control "true"
foreach {key value} [string map {= " "} [hlistprop $path]] {
if {[string compare -nocase $key "control"] == 0} {
if {[string compare -nocase $value "true"] == 0} {
set control "true"
if {[string compare -nocase $value "false"] == 0} {
set control "false"
}
}
}