From 7f4f6bd8cbd37eada43dc82c752eac571f63177a Mon Sep 17 00:00:00 2001 From: CRD716 Date: Thu, 27 Oct 2022 21:46:46 -0500 Subject: [PATCH] filerecord.h typo --- sdrbase/dsp/filerecord.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdrbase/dsp/filerecord.h b/sdrbase/dsp/filerecord.h index 533263e3c..02ba5d706 100644 --- a/sdrbase/dsp/filerecord.h +++ b/sdrbase/dsp/filerecord.h @@ -50,7 +50,7 @@ public: quint64 getByteCount() const { return m_byteCount; } void setMsShift(qint64 shift) { m_msShift = shift; } - const QString& getCurrentFileName() { return m_curentFileName; } + const QString& getCurrentFileName() { return m_currentFileName; } void genUniqueFileName(uint deviceUID, int istream = -1); @@ -74,7 +74,7 @@ private: bool m_recordOn; bool m_recordStart; std::ofstream m_sampleFile; - QString m_curentFileName; + QString m_currentFileName; quint64 m_byteCount; qint64 m_msShift; QRecursiveMutex m_mutex;