diff options
| author | Méven Car <[email protected]> | 2023-05-09 10:30:14 +0200 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2023-05-09 10:30:14 +0200 |
| commit | 5887d1d852ccfdaa6fc1582abc60de13768062e6 (patch) | |
| tree | 1815e8381ad5b328ccf31fd136c2aadd69d6f5b6 /src/dolphinmainwindow.cpp | |
| parent | d6da4a903fb71664da09e09fe31a35123052fd8c (diff) | |
Fix a bunch of Qt6/Kf6 warnings
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 415f2e8b3..ae5a23829 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -538,7 +538,7 @@ void DolphinMainWindow::showTarget() const KFileItem link = m_activeViewContainer->view()->selectedItems().at(0); const QUrl destinationUrl = link.url().resolved(QUrl(link.linkDest())); - auto job = KIO::statDetails(destinationUrl, KIO::StatJob::SourceSide, KIO::StatNoDetails); + auto job = KIO::stat(destinationUrl, KIO::StatJob::SourceSide, KIO::StatNoDetails); connect(job, &KJob::finished, this, [this, destinationUrl](KJob *job) { KIO::StatJob *statJob = static_cast<KIO::StatJob *>(job); |
