(
title, subtitle, category, label=None, icon=None)
| 1348 | # initialise the message notifier |
| 1349 | def notifierInit(self): |
| 1350 | def _simple_notify( |
| 1351 | title, subtitle, category, label=None, icon=None): |
| 1352 | self.tray.showMessage(title, subtitle, 1, 2000) |
| 1353 | |
| 1354 | self._notifier = _simple_notify |
| 1355 | # does nothing if isAvailable returns false |
nothing calls this directly
no test coverage detected