┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.h
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2007-03-26 18:34:52 +0000
committerDavid Faure <[email protected]>2007-03-26 18:34:52 +0000
commitad6c01d200e2504de1a383355bd82906fe5c06ed (patch)
tree8adbbc4668426ef54f7fd0fc7d06b441bdd06a80 /src/dolphinview.h
parent1a321e5fbcdaf7d92d023bb1f8f2c6352b3c133e (diff)
Using a QLinkedList mostly for "accessing element at index i" is not the best solution performance-wise... use a QList instead.
svn path=/trunk/KDE/kdebase/apps/; revision=646813
Diffstat (limited to 'src/dolphinview.h')
-rw-r--r--src/dolphinview.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinview.h b/src/dolphinview.h
index aee10bcad..0bec4824a 100644
--- a/src/dolphinview.h
+++ b/src/dolphinview.h
@@ -217,7 +217,7 @@ public:
* @param index Output parameter which indicates the current
* index of the location.
*/
- const QLinkedList<UrlNavigator::HistoryElem> urlHistory(int& index) const;
+ const QList<UrlNavigator::HistoryElem> urlHistory(int& index) const;
/** Returns true, if at least one item is selected. */
bool hasSelection() const;