Gui: move to new style connect()

This commit is contained in:
wmayer
2023-02-01 11:58:00 +01:00
committed by wwmayer
parent 25beef481c
commit 8d42b6f93c
43 changed files with 237 additions and 246 deletions

View File

@@ -616,7 +616,7 @@ int PythonDebugger::tracer_callback(PyObject *obj, PyFrameObject *frame, int wha
if (bp.checkLine(line)) {
dbg->showDebugMarker(file, line);
QEventLoop loop;
QObject::connect(dbg, SIGNAL(signalNextStep()), &loop, SLOT(quit()));
QObject::connect(dbg, &PythonDebugger::signalNextStep, &loop, &QEventLoop::quit);
loop.exec();
dbg->hideDebugMarker(file);
}