forked from qt-creator/qt-creator
Convert to new connect api
Change-Id: I80aad51340bcde953763dec36cf989d6e19d4cd0 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -85,10 +85,10 @@ QtCreatorIntegration::QtCreatorIntegration(QDesignerFormEditorInterface *core, Q
|
||||
f |= SlotNavigationFeature;
|
||||
f &= ~ResourceEditorFeature;
|
||||
setFeatures(f);
|
||||
connect(this, SIGNAL(navigateToSlot(QString,QString,QStringList)),
|
||||
this, SLOT(slotNavigateToSlot(QString,QString,QStringList)));
|
||||
connect(this, SIGNAL(helpRequested(QString,QString)),
|
||||
this, SLOT(slotDesignerHelpRequested(QString,QString)));
|
||||
connect(this, &QtCreatorIntegration::navigateToSlot,
|
||||
this, &QtCreatorIntegration::slotNavigateToSlot);
|
||||
connect(this, &QtCreatorIntegration::helpRequested,
|
||||
this, &QtCreatorIntegration::slotDesignerHelpRequested);
|
||||
slotSyncSettingsToDesigner();
|
||||
connect(Core::ICore::instance(), SIGNAL(saveSettingsRequested()),
|
||||
this, SLOT(slotSyncSettingsToDesigner()));
|
||||
|
||||
Reference in New Issue
Block a user