From 7fe1d36e91630505cf247ede48f232de2d6bd58f Mon Sep 17 00:00:00 2001 From: CRD716 Date: Thu, 27 Oct 2022 21:48:57 -0500 Subject: [PATCH] wavfilerecord.h typo --- sdrbase/dsp/wavfilerecord.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdrbase/dsp/wavfilerecord.h b/sdrbase/dsp/wavfilerecord.h index 899f1c305..49e21298f 100644 --- a/sdrbase/dsp/wavfilerecord.h +++ b/sdrbase/dsp/wavfilerecord.h @@ -92,7 +92,7 @@ public: quint64 getByteCount() const { return m_byteCount; } void setMsShift(qint64 shift) override { m_msShift = shift; } virtual int getBytesPerSample() override { return 4; }; - const QString& getCurrentFileName() override { return m_curentFileName; } + const QString& getCurrentFileName() override { return m_currentFileName; } void genUniqueFileName(uint deviceUID, int istream = -1); @@ -120,7 +120,7 @@ private: bool m_recordOn; bool m_recordStart; std::ofstream m_sampleFile; - QString m_curentFileName; + QString m_currentFileName; quint64 m_byteCount; qint64 m_msShift;