diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-17 02:16:02 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-17 02:16:02 +0100 |
commit | ba46d4526a6cb17242bc82ddaf88fca112f28742 (patch) | |
tree | a3f61d9ce9406a4cbbe872e65104adaa260ec355 /migration | |
parent | 13d201581a10be0ca2a0523248a7348c712e0ad9 (diff) |
compat: get rid of string literal operator
Diffstat (limited to 'migration')
-rw-r--r-- | migration/20180102_00-process-detector-separator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/20180102_00-process-detector-separator.cpp b/migration/20180102_00-process-detector-separator.cpp index c1864adf..ddb01cb4 100644 --- a/migration/20180102_00-process-detector-separator.cpp +++ b/migration/20180102_00-process-detector-separator.cpp @@ -10,7 +10,7 @@ static constexpr auto OLD_UNIT_SEPARATOR = QChar(':'); static constexpr auto NEW_RECORD_SEPARATOR = QChar(0x1e); static constexpr auto NEW_UNIT_SEPARATOR = QChar(0x1f); -static constexpr QLatin1String KEY_NAME = "executable-list"_qstr; +static const QString KEY_NAME = "executable-list"; struct process_detector_record_separator : migration { |