forked from qt-creator/qt-creator
Qt Designer plugin: Port to new signals & slots syntax.
Split ResourceHandler::updateResources(bool updateProjectResources) into 2 slots to make it compatible to void signals. Change-Id: I0614637cd575c45f9acd6514fe04fe08dfcfcff8 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
@@ -97,8 +97,8 @@ QtCreatorIntegration::QtCreatorIntegration(QDesignerFormEditorInterface *core, Q
|
||||
connect(this, &QtCreatorIntegration::helpRequested,
|
||||
this, &QtCreatorIntegration::slotDesignerHelpRequested);
|
||||
slotSyncSettingsToDesigner();
|
||||
connect(Core::ICore::instance(), SIGNAL(saveSettingsRequested()),
|
||||
this, SLOT(slotSyncSettingsToDesigner()));
|
||||
connect(Core::ICore::instance(), &Core::ICore::saveSettingsRequested,
|
||||
this, &QtCreatorIntegration::slotSyncSettingsToDesigner);
|
||||
}
|
||||
|
||||
void QtCreatorIntegration::slotDesignerHelpRequested(const QString &manual, const QString &document)
|
||||
|
||||
Reference in New Issue
Block a user