Skip to content

Commit 5adb90d

Browse files
committed
[gdaltools] add missed signals (fix #15623)
1 parent 06a84f9 commit 5adb90d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

python/plugins/GdalTools/tools/doExtractProj.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# This will get replaced with a git SHA1 when you do a git archive
2424
__revision__ = '$Format:%H$'
2525

26-
from qgis.PyQt.QtCore import Qt, QCoreApplication, QThread, QMutex
26+
from qgis.PyQt.QtCore import Qt, QCoreApplication, QThread, QMutex, pyqtSignal
2727
from qgis.PyQt.QtWidgets import QDialog, QDialogButtonBox, QApplication, QMessageBox
2828
from qgis.PyQt.QtGui import QCursor
2929

@@ -184,6 +184,10 @@ def extractProjection(filename, createPrj):
184184

185185
class ExtractThread(QThread):
186186

187+
fileProcessed = pyqtSignal()
188+
processFinished = pyqtSignal()
189+
processInterrupted = pyqtSignal()
190+
187191
def __init__(self, files, needPrj):
188192
QThread.__init__(self, QThread.currentThread())
189193
self.inFiles = files

0 commit comments

Comments
 (0)