comparison: src/Commands.cc
src/Commands.cc
- changeset 108
- 6409ece8297c
- parent 99
- 44c0c7f31ae8
- child 112
- def56932f938
equal
deleted
inserted
replaced
| 97 |
97 |
| 98 if (i >= minargs) |
98 if (i >= minargs) |
| 99 { |
99 { |
| 100 text += " = "; |
100 text += " = "; |
| 101 |
101 |
| 102 bool is_string = args[i].type == EStringType; |
102 bool is_string = args[i].type == TYPE_String; |
| 103 |
103 |
| 104 if (is_string) |
104 if (is_string) |
| 105 text += '"'; |
105 text += '"'; |
| 106 |
106 |
| 107 text += String::FromNumber (args[i].defvalue); |
107 text += String::FromNumber (args[i].defvalue); |