645 |
645 |
646 @param date new date (QDate) |
646 @param date new date (QDate) |
647 """ |
647 """ |
648 self.__filterLogs() |
648 self.__filterLogs() |
649 |
649 |
650 @pyqtSlot(str) |
650 @pyqtSlot(int) |
651 def on_fieldCombo_activated(self, txt): |
651 def on_fieldCombo_activated(self, index): |
652 """ |
652 """ |
653 Private slot called, when a new filter field is selected. |
653 Private slot called, when a new filter field is selected. |
654 |
654 |
655 @param txt text of the selected field (string) |
655 @param index index of the selected entry |
|
656 @type int |
656 """ |
657 """ |
657 self.__filterLogs() |
658 self.__filterLogs() |
658 |
659 |
659 @pyqtSlot(str) |
660 @pyqtSlot(str) |
660 def on_rxEdit_textChanged(self, txt): |
661 def on_rxEdit_textChanged(self, txt): |