┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphintabwidget.cpp
diff options
context:
space:
mode:
authorArjun AK <[email protected]>2014-12-01 17:31:39 +0530
committerArjun AK <[email protected]>2014-12-01 17:31:39 +0530
commit1d7b3b8df525d72126c716c9809c058f481e873e (patch)
tree8e21bf2c05ba402afb5b961af3c8041c2fbdb3ed /src/dolphintabwidget.cpp
parentde7eefeb7e61ad343ea5483b36a7a39518b48747 (diff)
Fix KUrl -> QUrl porting error
Trailing slashes should be removed before calling QUrl::filename(), else it will return an empty string. BUG: 341411 REVIEW: 121293
Diffstat (limited to 'src/dolphintabwidget.cpp')
-rw-r--r--src/dolphintabwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphintabwidget.cpp b/src/dolphintabwidget.cpp
index b38cd5146..a0c9b9d81 100644
--- a/src/dolphintabwidget.cpp
+++ b/src/dolphintabwidget.cpp
@@ -348,7 +348,7 @@ QString DolphinTabWidget::tabName(const QUrl& url) const
if (url == QUrl("file:///")) {
name = '/';
} else {
- name = url.fileName();
+ name = url.adjusted(QUrl::StripTrailingSlash).fileName();
if (name.isEmpty()) {
name = url.scheme();
} else {