| 114 | } |
| 115 | |
| 116 | void SpectralAudioPluginUi::handleCommandMessage(int messageId) |
| 117 | { |
| 118 | if (messageId == Messages::UPDATE_AVAILABLE) { |
| 119 | aboutButton.getNormalImage()->replaceColour(Colour::fromString(TEXT_COLOUR), Colour::fromString(WARNING_COLOUR)); |
| 120 | aboutButton.repaint(); |
| 121 | } |
| 122 | else if (messageId == Messages::UPDATE_PROPERTIES) { |
| 123 | parameterContainer->onPropertiesChanged(); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | void SpectralAudioPluginUi::onNewVersionAvailable(VersionInfo* newVersionInfo) |
| 128 | { |
nothing calls this directly
no test coverage detected