| 76 | } |
| 77 | |
| 78 | void GM_Settings::updateItem(QListWidgetItem* item) |
| 79 | { |
| 80 | GM_Script *script = getScript(item); |
| 81 | if (!script) { |
| 82 | return; |
| 83 | } |
| 84 | script->updateScript(); |
| 85 | } |
| 86 | |
| 87 | void GM_Settings::removeItem(QListWidgetItem* item) |
| 88 | { |
nothing calls this directly
no test coverage detected