553 |
553 |
554 @param date new date (QDate) |
554 @param date new date (QDate) |
555 """ |
555 """ |
556 self.__filterLogs() |
556 self.__filterLogs() |
557 |
557 |
558 @pyqtSlot(str) |
558 @pyqtSlot(int) |
559 def on_fieldCombo_activated(self, txt): |
559 def on_fieldCombo_activated(self, index): |
560 """ |
560 """ |
561 Private slot called, when a new filter field is selected. |
561 Private slot called, when a new filter field is selected. |
562 |
562 |
563 @param txt text of the selected field (string) |
563 @param index index of the selected entry |
|
564 @type int |
564 """ |
565 """ |
565 self.__filterLogs() |
566 self.__filterLogs() |
566 |
567 |
567 @pyqtSlot(str) |
568 @pyqtSlot(str) |
568 def on_rxEdit_textChanged(self, txt): |
569 def on_rxEdit_textChanged(self, txt): |