Port away from deprecated QString::SkipEmptyParts.

This commit is contained in:
Andrius Štikonas 2020-11-14 01:16:19 +00:00
parent f419683cd6
commit aa32927848
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE
project(partitionmanager VERSION ${RELEASE_SERVICE_VERSION})
# Dependencies
set(QT_MIN_VERSION "5.10.0")
set(QT_MIN_VERSION "5.14.0")
set(KF5_MIN_VERSION "5.73")
set(KPMCORE_MIN_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}")

View File

@ -198,7 +198,7 @@ void EditMountPointDialogWidget::buttonMoreClicked(bool)
QStringList EditMountPointDialogWidget::options() const
{
QStringList optList = m_Options.split(QLatin1Char(','), QString::SkipEmptyParts);
QStringList optList = m_Options.split(QLatin1Char(','), Qt::SkipEmptyParts);
const auto keys = boxOptions();
for (const auto &s : keys)