summaryrefslogtreecommitdiff
path: root/src/designer/src/components/propertyeditor/stringlisteditor.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-06-01 16:46:21 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-07-14 10:58:03 +0000
commitf23befda718870f3dbb8f6e005e12a251fdfd059 (patch)
treee200a5acca465c75475a0ccc731307362af3f489 /src/designer/src/components/propertyeditor/stringlisteditor.cpp
parent710e94a886a2cd870debd9f01db4b4fb393f4865 (diff)
downloadqttools-f23befda718870f3dbb8f6e005e12a251fdfd059.tar.gz
Port Qt Designer to Qt 5 signals & slot connection syntax.
Use Qt 5 signals & slot connection with exception of private slots and tool classes from the shared directory. Change-Id: I2bf4bfbdff709d15c8ee4ae3de3039bf3d210d6a Reviewed-by: Jarek Kobus <jaroslaw.kobus@theqtcompany.com>
Diffstat (limited to 'src/designer/src/components/propertyeditor/stringlisteditor.cpp')
-rw-r--r--src/designer/src/components/propertyeditor/stringlisteditor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/designer/src/components/propertyeditor/stringlisteditor.cpp b/src/designer/src/components/propertyeditor/stringlisteditor.cpp
index 11eaba63b..1af9458f5 100644
--- a/src/designer/src/components/propertyeditor/stringlisteditor.cpp
+++ b/src/designer/src/components/propertyeditor/stringlisteditor.cpp
@@ -47,11 +47,11 @@ StringListEditor::StringListEditor(QWidget *parent)
listView->setModel(m_model);
connect(listView->selectionModel(),
- SIGNAL(currentChanged(QModelIndex,QModelIndex)),
- this, SLOT(currentIndexChanged(QModelIndex,QModelIndex)));
+ &QItemSelectionModel::currentChanged,
+ this, &StringListEditor::currentIndexChanged);
connect(listView->itemDelegate(),
- SIGNAL(closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)),
- this, SLOT(currentValueChanged()));
+ &QAbstractItemDelegate::closeEditor,
+ this, &StringListEditor::currentValueChanged);
QIcon upIcon = createIconSet(QString::fromUtf8("up.png"));
QIcon downIcon = createIconSet(QString::fromUtf8("down.png"));