diff options
| author | Peter Penz <[email protected]> | 2007-10-02 19:03:03 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-10-02 19:03:03 +0000 |
| commit | ba150e5735bd336752f713df1e9f66b7ed90e6ae (patch) | |
| tree | ba9a0cd18fd9b78e810af113f21b8061756f23a8 /src/dolphinpart.cpp | |
| parent | 4a2416e4bd9b646772d0c1da52a7e57a4cf8ec04 (diff) | |
replace QList<KFileItem> by KFileItemList, as KFileItemList is not QList<KFileItem*> anymore since todays update of kfileitem.* in kdelibs
svn path=/trunk/KDE/kdebase/apps/; revision=720234
Diffstat (limited to 'src/dolphinpart.cpp')
| -rw-r--r-- | src/dolphinpart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 5bb59ec04..092d2e14a 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -75,8 +75,8 @@ DolphinPart::DolphinPart(QWidget* parentWidget, QObject* parent, const QStringLi this, SLOT(slotItemTriggered(KFileItem))); connect(m_view, SIGNAL(requestContextMenu(KFileItem, const KUrl&)), this, SLOT(slotOpenContextMenu(KFileItem, const KUrl&))); - connect(m_view, SIGNAL(selectionChanged(QList<KFileItem>)), - m_extension, SIGNAL(selectionInfo(QList<KFileItem>))); + connect(m_view, SIGNAL(selectionChanged(KFileItemList)), + m_extension, SIGNAL(selectionInfo(KFileItemList))); connect(m_view, SIGNAL(requestItemInfo(KFileItem)), this, SLOT(slotRequestItemInfo(KFileItem))); |
