| 361 | |
| 362 | |
| 363 | bool BatchImport::booleanValue() { |
| 364 | QString value = textValue(); |
| 365 | value.toLower(); |
| 366 | if (value == "1" || value == "true") |
| 367 | return true; |
| 368 | else |
| 369 | return false; |
| 370 | } |
| 371 | |
| 372 | |
| 373 | short BatchImport::shortValue() { |
nothing calls this directly
no outgoing calls
no test coverage detected