1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 08:15:17 +03:00

Update eeprominterface.cpp

This commit is contained in:
Bertrand Songis 2014-04-07 21:28:23 +02:00
parent d22529f181
commit 5c3bb2ab06

View file

@ -303,13 +303,13 @@ QString RawSource::toString()
QString SwitchUp(const char sw) QString SwitchUp(const char sw)
{ {
const char result[] = {'S', sw, upArrow[0], upArrow[1], upArrow[2], 0 }; const char result[] = {'S', sw, upArrow[0], upArrow[1], upArrow[2], 0};
return QString::fromUtf8(result); return QString::fromUtf8(result);
} }
QString SwitchDn(const char sw) QString SwitchDn(const char sw)
{ {
const char result[] = {'S', sw, downArrow[0], downArrow[1], downArrow[2], 0 }; const char result[] = {'S', sw, downArrow[0], downArrow[1], downArrow[2], 0};
return QString::fromUtf8(result); return QString::fromUtf8(result);
} }