278 QTimer.singleShot(0, self.__lookForNewDocumentation) |
278 QTimer.singleShot(0, self.__lookForNewDocumentation) |
279 if self.__searchWord is not None: |
279 if self.__searchWord is not None: |
280 QTimer.singleShot(0, self.__searchForWord) |
280 QTimer.singleShot(0, self.__searchForWord) |
281 |
281 |
282 QTimer.singleShot(0, syncMgr.loadSettings) |
282 QTimer.singleShot(0, syncMgr.loadSettings) |
283 |
283 |
|
284 def __del__(self): |
|
285 """ |
|
286 Special method called during object destruction. |
|
287 |
|
288 Note: This empty variant seems to get rid of the Qt message |
|
289 'Warning: QBasicTimer::start: QBasicTimer can only be used with |
|
290 threads started with QThread' |
|
291 """ |
|
292 pass |
|
293 |
284 def __setIconDatabasePath(self, enable=True): |
294 def __setIconDatabasePath(self, enable=True): |
285 """ |
295 """ |
286 Private method to set the favicons path. |
296 Private method to set the favicons path. |
287 |
297 |
288 @param enable flag indicating to enabled icon storage (boolean) |
298 @param enable flag indicating to enabled icon storage (boolean) |