| 114 | } |
| 115 | |
| 116 | void MacroConditionQueueEdit::ConditionChanged(int condition) |
| 117 | { |
| 118 | GUARD_LOADING_AND_LOCK(); |
| 119 | _entryData->_condition = |
| 120 | static_cast<MacroConditionQueue::Condition>(condition); |
| 121 | emit HeaderInfoChanged( |
| 122 | QString::fromStdString(_entryData->GetShortDesc())); |
| 123 | SetWidgetVisibility(); |
| 124 | } |
| 125 | |
| 126 | void MacroConditionQueueEdit::QueueChanged(const QString &text) |
| 127 | { |
nothing calls this directly
no test coverage detected