97 def on_geoRemoveAllButton_clicked(self): |
97 def on_geoRemoveAllButton_clicked(self): |
98 """ |
98 """ |
99 Private slot to remove all geolocation entries. |
99 Private slot to remove all geolocation entries. |
100 """ |
100 """ |
101 while self.geoList.topLevelItemCount() > 0: |
101 while self.geoList.topLevelItemCount() > 0: |
102 itm = self.geoList.takeTopLevelItem(0) |
102 itm = self.geoList.takeTopLevelItem(0) # __IGNORE_WARNING__ |
103 del itm |
103 del itm |
104 self.__updateGeoButtons() |
104 self.__updateGeoButtons() |
105 |
105 |
106 @pyqtSlot() |
106 @pyqtSlot() |
107 def on_notifList_itemSelectionChanged(self): |
107 def on_notifList_itemSelectionChanged(self): |
126 def on_notifRemoveAllButton_clicked(self): |
126 def on_notifRemoveAllButton_clicked(self): |
127 """ |
127 """ |
128 Private slot to remove all notification entries. |
128 Private slot to remove all notification entries. |
129 """ |
129 """ |
130 while self.notifList.topLevelItemCount() > 0: |
130 while self.notifList.topLevelItemCount() > 0: |
131 itm = self.notifList.takeTopLevelItem(0) |
131 itm = self.notifList.takeTopLevelItem(0) # __IGNORE_WARNING__ |
132 del itm |
132 del itm |
133 self.__updateNotifButtons() |
133 self.__updateNotifButtons() |
134 |
134 |
135 def getData(self): |
135 def getData(self): |
136 """ |
136 """ |