┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2007-08-13 21:57:20 +0000
committerDavid Faure <[email protected]>2007-08-13 21:57:20 +0000
commit81fcd720a2cc095262e52b8a40dd1472d774a415 (patch)
treea98ca305384c3e8ed8d4c49a4bff746fdc3dde2d /src/dolphinmainwindow.h
parent1f5476dd45efa74d847b041bb03f64f4d4a8c9c4 (diff)
Use KFileItem by value rather than by pointer
- in KDirModel::itemForIndex, as noted there as a TODO - in dolphin, everywhere. svn path=/trunk/KDE/kdebase/apps/; revision=699691
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index b23e34136..8c79200fa 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -122,7 +122,7 @@ public slots:
* Inform all affected dolphin components that a selection change is
* requested.
*/
- void changeSelection(const KFileItemList& selection);
+ void changeSelection(const QList<KFileItem>& selection);
/** Stores all settings and quits Dolphin. */
void quit();
@@ -138,7 +138,7 @@ signals:
* Is sent if the selection of the currently active view has
* been changed.
*/
- void selectionChanged(const KFileItemList& selection);
+ void selectionChanged(const QList<KFileItem>& selection);
/**
* Is sent if the url of the currently active view has
@@ -404,7 +404,7 @@ private slots:
* Updates the state of the 'Edit' menu actions and emits
* the signal selectionChanged().
*/
- void slotSelectionChanged(const KFileItemList& selection);
+ void slotSelectionChanged(const QList<KFileItem>& selection);
/** Emits the signal requestItemInfo(). */
void slotRequestItemInfo(const KFileItem&);