1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:05:26 +03:00

IconButton: removed unused local variable.

This commit is contained in:
Maarten ter Huurne 2011-10-23 12:05:27 +02:00
parent 55cabcea49
commit 76613d1810

View File

@ -31,13 +31,13 @@ void IconButton::setPosition(int x, int y) {
}
void IconButton::paint() {
uint margin = labelMargin;
if (iconSurface == NULL || label == "")
margin = 0;
if (iconSurface != NULL)
if (iconSurface) {
iconSurface->blit(gmenu2x->s,iconRect);
if (label != "")
gmenu2x->s->write(gmenu2x->font, label, labelRect.x, labelRect.y, labelHAlign, labelVAlign);
}
if (label != "") {
gmenu2x->s->write(gmenu2x->font, label, labelRect.x, labelRect.y,
labelHAlign, labelVAlign);
}
}
bool IconButton::paintHover() {