Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
dforsi committed Aug 6, 2023
1 parent b22922e commit 07044a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions plugins/channelmimo/doa2/doa2gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ bool DOA2GUI::handleMessage(const Message& message)
m_centerFrequency = notif.getCenterFrequency();
displayRateAndShift();
updateAbsoluteCenterFrequency();
setFFTAveragingToolitp();
setFFTAveragingTooltip();
return true;
}
else if (DOA2::MsgConfigureDOA2::match(message))
Expand Down Expand Up @@ -211,7 +211,7 @@ void DOA2GUI::displaySettings()
ui->squelch->setValue(m_settings.m_squelchdB);
ui->squelchText->setText(tr("%1").arg(m_settings.m_squelchdB, 3));
ui->fftAveraging->setCurrentIndex(m_settings.m_fftAveragingIndex);
setFFTAveragingToolitp();
setFFTAveragingTooltip();
getRollupContents()->restoreState(m_rollupState);
updateAbsoluteCenterFrequency();
blockApplySettings(false);
Expand All @@ -229,7 +229,7 @@ void DOA2GUI::displayRateAndShift()
m_scopeVis->setLiveRate(channelSampleRate);
}

void DOA2GUI::setFFTAveragingToolitp()
void DOA2GUI::setFFTAveragingTooltip()
{
float channelSampleRate = ((float) m_sampleRate) / (1<<m_settings.m_log2Decim);
float averagingTime = (DOA2::m_fftSize * DOA2Settings::getAveragingValue(m_settings.m_fftAveragingIndex)) /
Expand Down Expand Up @@ -378,7 +378,7 @@ void DOA2GUI::on_fftAveraging_currentIndexChanged(int index)
qDebug("DOA2GUI::on_averaging_currentIndexChanged: %d", index);
m_settings.m_fftAveragingIndex = index;
applySettings();
setFFTAveragingToolitp();
setFFTAveragingTooltip();
}

void DOA2GUI::on_centerPosition_clicked()
Expand Down
2 changes: 1 addition & 1 deletion plugins/channelmimo/doa2/doa2gui.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class DOA2GUI : public ChannelGUI {
void applyPosition();
void displaySettings();
void displayRateAndShift();
void setFFTAveragingToolitp();
void setFFTAveragingTooltip();
static void setNumberStr(float v, int decimalPlaces, QString& s);
bool handleMessage(const Message& message);
void makeUIConnections();
Expand Down

0 comments on commit 07044a5

Please sign in to comment.