Skip to content

Commit

Permalink
Use QLatin1String()
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Jan 24, 2022
1 parent 212489b commit 8a9b24b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sources/soundsourcesndfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ QStringList SoundSourceProviderSndFile::getSupportedFileTypes() const {

SoundSourceProviderPriority SoundSourceProviderSndFile::getPriorityHint(
const QString& supportedFileType) const {
if (supportedFileType.startsWith(QStringLiteral("aif")) ||
if (supportedFileType.startsWith(QLatin1String("aif")) ||
supportedFileType == QLatin1String("wav")) {
// Default decoder for AIFF and WAV
return SoundSourceProviderPriority::Default;
Expand Down

0 comments on commit 8a9b24b

Please sign in to comment.