1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 01:35:21 +03:00

Warning removed

This commit is contained in:
Bertrand Songis 2014-02-13 18:11:40 +01:00
parent a918f293cf
commit aa19969759
4 changed files with 5 additions and 5 deletions

View file

@ -37,7 +37,7 @@ bool Side::displayImage( QString fileName, Source pictSource )
return false;
else
image = flash.getSplash();
*format = flash.getSplashWidth()==WIDTH_TARANIS ? LCDTARANIS : LCD9X;
*format = (flash.getSplashWidth()==WIDTH_TARANIS ? LCDTARANIS : LCD9X);
}
else {
image.load(fileName);

View file

@ -413,7 +413,7 @@ bool FlashInterface::setSplash(const QImage & newsplash)
}
}
uint FlashInterface::getSplashWidth()
int FlashInterface::getSplashWidth()
{
return splash_width;
}

View file

@ -59,7 +59,7 @@ public:
QImage getSplash();
bool setSplash(const QImage & newsplash);
bool hasSplash();
uint getSplashWidth();
int getSplashWidth();
uint getSplashHeight();
uint getSplashColors();
QImage::Format getSplashFormat();