┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphincolumnview.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-08-29 19:35:59 +0000
committerPeter Penz <[email protected]>2009-08-29 19:35:59 +0000
commit625cfd274375614fb85100cf4adc06244ff16cf8 (patch)
tree01879c79ea229bddd65b20e0e70242633bd15330 /src/dolphincolumnview.h
parent60d28ca5c92baeb6613ac87cad53a188bd3de6eb (diff)
- fix focus issue in column-view
- minor interface corrections svn path=/trunk/KDE/kdebase/apps/; revision=1017162
Diffstat (limited to 'src/dolphincolumnview.h')
-rw-r--r--src/dolphincolumnview.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dolphincolumnview.h b/src/dolphincolumnview.h
index d2354a9ad..c742b46cf 100644
--- a/src/dolphincolumnview.h
+++ b/src/dolphincolumnview.h
@@ -65,13 +65,13 @@ public:
* of the shown directory, it does not trigger a loading of the model.
*/
void setChildUrl(const KUrl& url);
- const KUrl& childUrl() const;
+ KUrl childUrl() const;
/** Sets the directory URL that is shown inside the column widget. */
void setUrl(const KUrl& url);
/** Returns the directory URL that is shown inside the column widget. */
- const KUrl& url() const;
+ KUrl url() const;
/**
* Updates the background color dependent from the activation state
@@ -149,7 +149,7 @@ inline void DolphinColumnView::setChildUrl(const KUrl& url)
m_childUrl = url;
}
-inline const KUrl& DolphinColumnView::childUrl() const
+inline KUrl DolphinColumnView::childUrl() const
{
return m_childUrl;
}
@@ -162,7 +162,7 @@ inline void DolphinColumnView::setUrl(const KUrl& url)
}
}
-inline const KUrl& DolphinColumnView::url() const
+inline KUrl DolphinColumnView::url() const
{
return m_url;
}