1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
31 """ | 31 """ |
32 Constructor | 32 Constructor |
33 | 33 |
34 @param collection full pathname of the collection file (string) | 34 @param collection full pathname of the collection file (string) |
35 """ | 35 """ |
36 QThread.__init__(self) | 36 super().__init__() |
37 | 37 |
38 self.__abort = False | 38 self.__abort = False |
39 self.__collection = collection | 39 self.__collection = collection |
40 self.__mutex = QMutex() | 40 self.__mutex = QMutex() |
41 | 41 |