diff options
| author | Alex Richardson <[email protected]> | 2014-04-10 02:59:39 +0200 |
|---|---|---|
| committer | Alex Richardson <[email protected]> | 2014-05-05 23:05:34 +0200 |
| commit | 05f2c9c320694ee79dd0b60b35d98003f2d8df96 (patch) | |
| tree | 25879f8eef8e50f2540770573627eb210e32ce41 /src/views/renamedialog.cpp | |
| parent | b069fb9b43072ebdb0cd292f224c4f4ca96e48f8 (diff) | |
dolphin: convert views/ to qt5 signal/slot syntax
Removed arguments from DolphinViewActionHandler::slotTrashActivated since
they were unused and made the connection fail.
Also fixed a bad connection in dolphinview.cpp, there is no signal
KFileItemModel::loadingCompleted
Diffstat (limited to 'src/views/renamedialog.cpp')
| -rw-r--r-- | src/views/renamedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/renamedialog.cpp b/src/views/renamedialog.cpp index a2fc7d20c..67f90a5da 100644 --- a/src/views/renamedialog.cpp +++ b/src/views/renamedialog.cpp @@ -84,7 +84,7 @@ RenameDialog::RenameDialog(QWidget *parent, const KFileItemList& items) : } m_lineEdit = new KLineEdit(page); - connect(m_lineEdit, SIGNAL(textChanged(QString)), this, SLOT(slotTextChanged(QString))); + connect(m_lineEdit, &KLineEdit::textChanged, this, &RenameDialog::slotTextChanged); int selectionLength = m_newName.length(); if (m_renameOneItem) { |
