From 16ae002d0b0d3d8309677d0a72bd4703fdcac0ae Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 5 Jan 2022 20:39:12 -0800 Subject: Avoid a deprecated QString enum --- utils/alsoft-config/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index 9fb6bd76..0e6e2e29 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -204,7 +204,7 @@ static QStringList getAllDataPaths(const QString &append) QString paths = qgetenv("XDG_DATA_DIRS"); if(paths.isEmpty()) paths = "/usr/local/share/:/usr/share/"; - list += paths.split(QChar(':'), QString::SkipEmptyParts); + list += paths.split(QChar(':'), Qt::SkipEmptyParts); #endif QStringList::iterator iter = list.begin(); while(iter != list.end()) -- cgit v1.2.3