aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-01-05 20:39:12 -0800
committerChris Robinson <[email protected]>2022-01-05 20:39:12 -0800
commit16ae002d0b0d3d8309677d0a72bd4703fdcac0ae (patch)
tree2c0df82596fc51c66d2eebe787f7ee9da8e7bac8 /utils/alsoft-config
parent43ec687ee94fffb90a97841406c36ce08291bf80 (diff)
Avoid a deprecated QString enum
Diffstat (limited to 'utils/alsoft-config')
-rw-r--r--utils/alsoft-config/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
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())