diff options
| author | Lukáš Tinkl <[email protected]> | 2014-10-21 22:01:34 +0200 |
|---|---|---|
| committer | Lukáš Tinkl <[email protected]> | 2014-10-21 22:02:26 +0200 |
| commit | a8b39ff6015f67985fa9ddb93d5e08290d048001 (patch) | |
| tree | 016dc79ecf772ab69e099b934a98b833e7ad52b0 /src/dolphintabwidget.cpp | |
| parent | 9bf03a3c48f4847b5e0417e3529bf071108cbf1e (diff) | |
address 2 more KUrl -> QUrl issues mentioned in rr#120688
Diffstat (limited to 'src/dolphintabwidget.cpp')
| -rw-r--r-- | src/dolphintabwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphintabwidget.cpp b/src/dolphintabwidget.cpp index 7a4869421..b38cd5146 100644 --- a/src/dolphintabwidget.cpp +++ b/src/dolphintabwidget.cpp @@ -184,7 +184,7 @@ void DolphinTabWidget::openFiles(const QList<QUrl>& files) // directories are shown inside one tab (see openDirectories()). QList<QUrl> dirs; foreach (const QUrl& url, files) { - const QUrl dir(url.adjusted(QUrl::RemoveFilename).path()); + const QUrl dir(url.adjusted(QUrl::RemoveFilename)); if (!dirs.contains(dir)) { dirs.append(dir); } |
