src/eric7/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10068:7febcdccb2a1 10069:435cc5875135
7 Module implementing a dialog for the Mercurial server. 7 Module implementing a dialog for the Mercurial server.
8 """ 8 """
9 9
10 import os 10 import os
11 11
12 from PyQt6.QtCore import QProcess, QSize, Qt 12 from PyQt6.QtCore import QProcess, QSize, Qt, pyqtSlot
13 from PyQt6.QtGui import QAction, QBrush, QTextCursor 13 from PyQt6.QtGui import QAction, QBrush, QTextCursor
14 from PyQt6.QtWidgets import QComboBox, QPlainTextEdit, QSpinBox, QToolBar 14 from PyQt6.QtWidgets import QComboBox, QPlainTextEdit, QSpinBox, QToolBar
15 15
16 from eric7 import Preferences 16 from eric7 import Preferences
17 from eric7.EricGui import EricPixmapCache 17 from eric7.EricGui import EricPixmapCache
205 @param e close event 205 @param e close event
206 @type QCloseEvent 206 @type QCloseEvent
207 """ 207 """
208 self.__stopServer() 208 self.__stopServer()
209 209
210 @pyqtSlot(int, QProcess.ExitStatus)
210 def __procFinished(self, exitCode, exitStatus): 211 def __procFinished(self, exitCode, exitStatus):
211 """ 212 """
212 Private slot connected to the finished signal. 213 Private slot connected to the finished signal.
213 214
214 @param exitCode exit code of the process 215 @param exitCode exit code of the process

eric ide

mercurial