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

Update eeprominterface.cpp

This commit is contained in:
Bertrand Songis 2014-04-07 21:27:41 +02:00
parent 6af9abd9b7
commit d22529f181

View file

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