diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2011-07-07 09:08:39 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2011-07-07 09:08:39 +0000 |
| commit | 7df119586bbb595f8f00ca1cb54bc3beebfc14a5 (patch) | |
| tree | 2c30b72af484ce0821730b9c8f4955ea8b86aaf1 /examples/GuiClient/statusTextWidget.cpp | |
| parent | 498881bcf60b59b945beed450e31592b1c8e96a3 (diff) | |
| download | qxmpp-7df119586bbb595f8f00ca1cb54bc3beebfc14a5.tar.gz | |
normalize Qt signal / slot signatures
Diffstat (limited to 'examples/GuiClient/statusTextWidget.cpp')
| -rw-r--r-- | examples/GuiClient/statusTextWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/GuiClient/statusTextWidget.cpp b/examples/GuiClient/statusTextWidget.cpp index c0e3fe0c..3853aa16 100644 --- a/examples/GuiClient/statusTextWidget.cpp +++ b/examples/GuiClient/statusTextWidget.cpp @@ -81,7 +81,7 @@ statusTextWidget::statusTextWidget(QWidget* parent) : QWidget(parent), bool check = connect(m_statusButton, SIGNAL(clicked(bool)), SLOT(showMenu())); Q_ASSERT(check); - check = connect(m_statusLineEdit, SIGNAL(textChanged(const QString&)), SLOT(textChanged())); + check = connect(m_statusLineEdit, SIGNAL(textChanged(QString)), SLOT(textChanged())); Q_ASSERT(check); check = connect(m_statusLineEdit, SIGNAL(editingFinished()), SLOT(statusTextChanged_helper())); Q_ASSERT(check); |
