summaryrefslogtreecommitdiff
path: root/src/plugins/designer/qtcreatorintegration.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-06-02 09:14:40 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-06-02 09:54:08 +0000
commit9572b6f7397181be0056689de010d64959cac2aa (patch)
treec4796b6fc295cc8505b4b6e672e6822d609b321a /src/plugins/designer/qtcreatorintegration.cpp
parent17aaf043099cbf2405a3a667879448ba80dea4b4 (diff)
downloadqt-creator-9572b6f7397181be0056689de010d64959cac2aa.tar.gz
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>
Diffstat (limited to 'src/plugins/designer/qtcreatorintegration.cpp')
-rw-r--r--src/plugins/designer/qtcreatorintegration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/designer/qtcreatorintegration.cpp b/src/plugins/designer/qtcreatorintegration.cpp
index c62f50d8d0..bd200bd5cf 100644
--- a/src/plugins/designer/qtcreatorintegration.cpp
+++ b/src/plugins/designer/qtcreatorintegration.cpp
@@ -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)