From ce1d6a6068b2d2d0816634b27090ff649c2b7374 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Wed, 20 Dec 2023 02:04:43 +0000 Subject: [PATCH] Fix typos --- resources/news.txt | 2 +- src/applications/gqrx/mainwindow.cpp | 2 +- src/applications/gqrx/receiver.cpp | 4 ++-- src/qtgui/ioconfig.cpp | 2 +- src/qtgui/ioconfig.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/news.txt b/resources/news.txt index dfcd896d..abe3a6fe 100644 --- a/resources/news.txt +++ b/resources/news.txt @@ -27,7 +27,7 @@ NEW: Min hold line in plot. NEW: A/B measurement markers on plot. NEW: Plot tooltip displays delta from demod frequency. - NEW: Dropped frames are indicated by red background in FFT Settigns panel. + NEW: Dropped frames are indicated by red background in FFT Settings panel. NEW: "Avg" waterfall mode, which displays average of FFT bins. NEW: "Sync" waterfall mode, which mirrors averaged data from plot. NEW: Support for RTL-SDR Blog V4 in AppImage and DMG releases. diff --git a/src/applications/gqrx/mainwindow.cpp b/src/applications/gqrx/mainwindow.cpp index 78456415..7b34afa9 100644 --- a/src/applications/gqrx/mainwindow.cpp +++ b/src/applications/gqrx/mainwindow.cpp @@ -1328,7 +1328,7 @@ void MainWindow::setFmMaxdev(float max_dev) /** - * @brief New FM de-emphasis time consant selected. + * @brief New FM de-emphasis time constant selected. * @param tau The new time constant */ void MainWindow::setFmEmph(double tau) diff --git a/src/applications/gqrx/receiver.cpp b/src/applications/gqrx/receiver.cpp index 211d63e8..9bdf979f 100644 --- a/src/applications/gqrx/receiver.cpp +++ b/src/applications/gqrx/receiver.cpp @@ -1082,7 +1082,7 @@ receiver::status receiver::stop_audio_recording() // Temporary workaround for https://github.com/gnuradio/gnuradio/issues/5436 tb->disconnect(ddc, 0, rx, 0); tb->connect(ddc, 0, rx, 0); - // End temporary workaronud + // End temporary workaround tb->unlock(); wav_gain0.reset(); @@ -1314,7 +1314,7 @@ receiver::status receiver::stop_sniffer() // Temporary workaround for https://github.com/gnuradio/gnuradio/issues/5436 tb->disconnect(ddc, 0, rx, 0); tb->connect(ddc, 0, rx, 0); - // End temporary workaronud + // End temporary workaround tb->disconnect(sniffer_rr, 0, sniffer, 0); tb->unlock(); diff --git a/src/qtgui/ioconfig.cpp b/src/qtgui/ioconfig.cpp index d2963230..c0f0b033 100644 --- a/src/qtgui/ioconfig.cpp +++ b/src/qtgui/ioconfig.cpp @@ -707,7 +707,7 @@ void CIoConfig::inputDeviceSelected(int index) * * This slot is activated when the device string in the text edit box has changed * either by the user or programmatically. We use this to enable/disable the OK - * button - we allo OK only if there is some text in the text entry. + * button - we allow OK only if there is some text in the text entry. */ void CIoConfig::inputDevstrChanged(const QString &text) { diff --git a/src/qtgui/ioconfig.h b/src/qtgui/ioconfig.h index ad762eac..2e4371c9 100644 --- a/src/qtgui/ioconfig.h +++ b/src/qtgui/ioconfig.h @@ -40,7 +40,7 @@ namespace Ui { class CIoConfig; } -/** @brief Inout/output device configurator. */ +/** @brief Input/output device configurator. */ class CIoConfig : public QDialog { Q_OBJECT