| 639 | |
| 640 | namespace { |
| 641 | wxString GetVersionForDisplay(const EffectDefinitionInterface &definition) |
| 642 | { |
| 643 | static const auto specialVersion = XO("n/a"); |
| 644 | auto result = definition.GetVersion(); |
| 645 | if (result == specialVersion.MSGID()) |
| 646 | result = specialVersion.Translation(); |
| 647 | return result; |
| 648 | } |
| 649 | } |
| 650 | |
| 651 | void EffectUIHost::OnMenu(wxCommandEvent & WXUNUSED(evt)) |
no test coverage detected