summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-12-08 01:20:47 +0000
committerbelugas <belugas@openttd.org>2007-12-08 01:20:47 +0000
commit8c89641dbe11528b8a3724a3a2061c3c04e11ce4 (patch)
treefa5bb81db42708ef19334b597f9946c859de2ebc /src/window.cpp
parent6fb71047d65391ef6f44957f65e7cc08f13b18b6 (diff)
downloadopenttd-8c89641dbe11528b8a3724a3a2061c3c04e11ce4.tar.xz
(svn r11592) -Codechange: Use the Window member RaiseButtons and remove the now useless RaiseWindowButtons function
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.cpp b/src/window.cpp
index ef172230b..19b5ccc7f 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -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();
}
}
}