1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-29 19:28:47 -05:00

CW keyer: used signed char to avoid copmilation warnings in some installations

This commit is contained in:
f4exb 2018-08-13 22:10:42 +02:00
parent 62deb64f57
commit a7e63df13d

View File

@ -127,7 +127,7 @@ private:
bool m_dot; bool m_dot;
bool m_dash; bool m_dash;
bool m_elementOn; bool m_elementOn;
char m_asciiChar; signed char m_asciiChar;
CWKeyIambicState m_keyIambicState; CWKeyIambicState m_keyIambicState;
CWTextState m_textState; CWTextState m_textState;
CWSmoother m_cwSmoother; CWSmoother m_cwSmoother;