forked from mirror/OpenTTD
(svn r11592) -Codechange: Use the Window member RaiseButtons and remove the now useless RaiseWindowButtons function
This commit is contained in:
@@ -85,9 +85,9 @@ void Window::RaiseButtons()
|
||||
uint i;
|
||||
|
||||
for (i = 0; i < this->widget_count; i++) {
|
||||
if (IsWidgetLowered(i)) {
|
||||
RaiseWidget(i);
|
||||
InvalidateWidget(i);
|
||||
if (this->IsWidgetLowered(i)) {
|
||||
this->RaiseWidget(i);
|
||||
this->InvalidateWidget(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1041,7 +1041,7 @@ static void DecreaseWindowCounters()
|
||||
|
||||
if (w->flags4&WF_TIMEOUT_MASK && !(--w->flags4&WF_TIMEOUT_MASK)) {
|
||||
CallWindowEventNP(w, WE_TIMEOUT);
|
||||
if (w->desc_flags & WDF_UNCLICK_BUTTONS) RaiseWindowButtons(w);
|
||||
if (w->desc_flags & WDF_UNCLICK_BUTTONS) w->RaiseButtons();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user