1792 @param date new date (QDate) |
1792 @param date new date (QDate) |
1793 """ |
1793 """ |
1794 if self.__actionMode() == "filter": |
1794 if self.__actionMode() == "filter": |
1795 self.__filterLogs() |
1795 self.__filterLogs() |
1796 |
1796 |
1797 @pyqtSlot(str) |
1797 @pyqtSlot(int) |
1798 def on_branchCombo_activated(self, txt): |
1798 def on_branchCombo_activated(self, index): |
1799 """ |
1799 """ |
1800 Private slot called, when a new branch is selected. |
1800 Private slot called, when a new branch is selected. |
1801 |
1801 |
1802 @param txt text of the selected branch (string) |
1802 @param index index of the selected entry |
|
1803 @type int |
1803 """ |
1804 """ |
1804 if self.__actionMode() == "filter": |
1805 if self.__actionMode() == "filter": |
1805 self.__filterLogs() |
1806 self.__filterLogs() |
1806 |
1807 |
1807 @pyqtSlot(str) |
1808 @pyqtSlot(int) |
1808 def on_fieldCombo_activated(self, txt): |
1809 def on_fieldCombo_activated(self, index): |
1809 """ |
1810 """ |
1810 Private slot called, when a new filter field is selected. |
1811 Private slot called, when a new filter field is selected. |
1811 |
1812 |
1812 @param txt text of the selected field (string) |
1813 @param index index of the selected entry |
|
1814 @type int |
1813 """ |
1815 """ |
1814 if self.__actionMode() == "filter": |
1816 if self.__actionMode() == "filter": |
1815 self.__filterLogs() |
1817 self.__filterLogs() |
1816 |
1818 |
1817 @pyqtSlot(str) |
1819 @pyqtSlot(str) |