1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 15:33:34 -04:00

Fix spelling in strings

This commit is contained in:
Daniele Forsi
2023-07-23 16:44:42 +02:00
parent 8a38af480f
commit 34aca019e2
24 changed files with 32 additions and 32 deletions
@@ -405,13 +405,13 @@ void AaroniaRTSAInputWorker::parseConfig(QByteArray bytes)
}
else
{
qDebug() << "AaroniaRTSAInputWorker::parseConfig: document has no config obhect: " << documentObject;
qDebug() << "AaroniaRTSAInputWorker::parseConfig: document has no config object: " << documentObject;
}
}
else
{
qDebug() << "AaroniaRTSAInputWorker::parseConfig: Document is not an object: " << document;
qDebug() << "AaroniaRTSAInputWorker::parseConfig: document is not an object: " << document;
}
if (m_iqDemodName == "") {
+1 -1
View File
@@ -137,7 +137,7 @@ bool AirspyInput::openDevice()
#endif
#ifdef LIBAIRSPY_DEFAULT_RATES
qDebug("AirspyInput::start: detault rates");
qDebug("AirspyInput::start: default rates");
m_sampleRates.clear();
m_sampleRates.push_back(10000000);
m_sampleRates.push_back(2500000);
@@ -369,7 +369,7 @@ bool BladeRF2Input::start()
if (needsStart)
{
qDebug("BladeRF2Input::start: enabling channel(s) and (re)sart buddy thread");
qDebug("BladeRF2Input::start: enabling channel(s) and (re)start buddy thread");
int nbChannels = bladerf2InputThread->getNbChannels();
@@ -115,7 +115,7 @@ bool SDRPlayV3Input::openDevice()
sdrplay_api_UnlockDeviceApi();
if ((err = sdrplay_api_GetDeviceParams(m_dev->dev, &m_devParams)) == sdrplay_api_Success)
{
qDebug() << "SDRPlayV3Input::openDevice: opened sucessfully";
qDebug() << "SDRPlayV3Input::openDevice: opened successfully";
}
else
{
@@ -562,7 +562,7 @@ bool SoapySDRInput::start()
if (needsStart)
{
qDebug("SoapySDRInput::start: (re)sart buddy thread");
qDebug("SoapySDRInput::start: (re)start buddy thread");
soapySDRInputThread->setSampleRate(m_settings.m_devSampleRate);
soapySDRInputThread->startWork();
}