1648 @param date new date (QDate) |
1648 @param date new date (QDate) |
1649 """ |
1649 """ |
1650 if self.__actionMode() == "filter": |
1650 if self.__actionMode() == "filter": |
1651 self.__filterLogs() |
1651 self.__filterLogs() |
1652 |
1652 |
1653 @pyqtSlot(str) |
1653 @pyqtSlot(int) |
1654 def on_fieldCombo_activated(self, txt): |
1654 def on_fieldCombo_activated(self, index): |
1655 """ |
1655 """ |
1656 Private slot called, when a new filter field is selected. |
1656 Private slot called, when a new filter field is selected. |
1657 |
1657 |
1658 @param txt text of the selected field (string) |
1658 @param index index of the selected entry |
|
1659 @type int |
1659 """ |
1660 """ |
1660 if self.__actionMode() == "filter": |
1661 if self.__actionMode() == "filter": |
1661 self.__filterLogs() |
1662 self.__filterLogs() |
1662 |
1663 |
1663 @pyqtSlot(str) |
1664 @pyqtSlot(str) |