6 """ |
6 """ |
7 Module implementing a thread class populating and updating the QtHelp |
7 Module implementing a thread class populating and updating the QtHelp |
8 documentation database. |
8 documentation database. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt4.QtCore import * |
11 from PyQt4.QtCore import pyqtSignal, QThread, qVersion, Qt, QMutex, QDateTime, QDir, \ |
12 from PyQt4.QtGui import * |
12 QLibraryInfo, QFileInfo |
13 from PyQt4.QtHelp import QHelpEngineCore |
13 from PyQt4.QtHelp import QHelpEngineCore |
14 |
14 |
15 from eric5config import getConfig |
15 from eric5config import getConfig |
16 |
16 |
17 |
17 |