[Gui] modernize some UI connections

This commit is contained in:
Uwe
2023-01-27 02:11:37 +01:00
committed by Chris Hennes
parent e3974e474e
commit 246c24ec32
12 changed files with 46 additions and 46 deletions

View File

@@ -54,7 +54,8 @@ View::View(QWidget* parentIn): QGraphicsView(parentIn)
conDelete = Application::Instance->signalDeleteDocument.connect(boost::bind(&View::slotDeleteDocument, this, bp::_1));
//just update the dagview when the gui process is idle.
connect(QAbstractEventDispatcher::instance(), SIGNAL(awake()), this, SLOT(awakeSlot()));
connect(QAbstractEventDispatcher::instance(), &QAbstractEventDispatcher::awake,
this, &View::awakeSlot);
}
View::~View()