diff options
| author | Lukáš Tinkl <[email protected]> | 2014-10-21 00:27:42 +0200 |
|---|---|---|
| committer | Lukáš Tinkl <[email protected]> | 2014-10-21 00:28:58 +0200 |
| commit | d9d7926c49c097fd1f5b72576e2c84c3989e89e7 (patch) | |
| tree | 51a940eff3b2ade2e5806d0a367ccfc252e1ad9a /src/dolphinmainwindow.cpp | |
| parent | 3c74d908de8efc8e2578a69b528370c40bae7ca4 (diff) | |
port Konqueror from KUrl to QUrl
REVIEW: 120650
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 3f83d054b..1053f15b6 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -172,12 +172,12 @@ DolphinMainWindow::~DolphinMainWindow() { } -void DolphinMainWindow::openDirectories(const QList<KUrl>& dirs) +void DolphinMainWindow::openDirectories(const QList<QUrl>& dirs) { m_tabWidget->openDirectories(dirs); } -void DolphinMainWindow::openFiles(const QList<KUrl>& files) +void DolphinMainWindow::openFiles(const QList<QUrl>& files) { m_tabWidget->openFiles(files); } |
