diff options
author | Chris Robinson <[email protected]> | 2022-01-05 20:39:12 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-01-05 20:39:12 -0800 |
commit | 16ae002d0b0d3d8309677d0a72bd4703fdcac0ae (patch) | |
tree | 2c0df82596fc51c66d2eebe787f7ee9da8e7bac8 /utils/alsoft-config | |
parent | 43ec687ee94fffb90a97841406c36ce08291bf80 (diff) |
Avoid a deprecated QString enum
Diffstat (limited to 'utils/alsoft-config')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 2 |
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()) |