1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-09-03 05:37:50 -04:00

Use QStringLiteral when it make sense

This commit is contained in:
Jon Beniston 2020-11-24 13:51:35 +00:00
parent ce4920c936
commit 7dc0b53492

View File

@ -28,12 +28,12 @@
const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = { const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = {
VORDemod::m_channelId, VORDemod::m_channelId,
QString("VOR Demodulator"), QStringLiteral("VOR Demodulator"),
QString("6.1.0"), QStringLiteral("6.1.0"),
QString("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QString("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,
QString("https://github.com/f4exb/sdrangel") QStringLiteral("https://github.com/f4exb/sdrangel")
}; };
VORDemodPlugin::VORDemodPlugin(QObject* parent) : VORDemodPlugin::VORDemodPlugin(QObject* parent) :