Port to non-deprecated QString::split() variant

This requires Qt 5.14, which we now depend on.
This commit is contained in:
Elvis Angelaccio 2020-10-14 23:26:05 +02:00
parent 3bf2922e33
commit a403df91b7
2 changed files with 2 additions and 2 deletions

View file

@ -626,7 +626,7 @@ void KFileItemModel::expandParentDirectories(const QUrl &url)
// first subdir can be empty, if m_dirLister->url().path() does not end with '/'
// this happens if baseUrl is not root but a home directory, see FoldersPanel,
// so using QString::SkipEmptyParts
const QStringList subDirs = url.path().mid(pos).split(QDir::separator(), QString::SkipEmptyParts);
const QStringList subDirs = url.path().mid(pos).split(QDir::separator(), Qt::SkipEmptyParts);
for (int i = 0; i < subDirs.count() - 1; ++i) {
QString path = urlToExpand.path();
if (!path.endsWith(QLatin1Char('/'))) {

View file

@ -175,7 +175,7 @@ void DolphinRemoteEncoding::slotDefault()
// settings here since it affects what will be matched.
KConfig config(("kio_" + m_currentURL.scheme() + "rc").toLatin1());
QStringList partList = m_currentURL.host().split('.', QString::SkipEmptyParts);
QStringList partList = m_currentURL.host().split('.', Qt::SkipEmptyParts);
if (!partList.isEmpty()) {
partList.erase(partList.begin());