summaryrefslogtreecommitdiff
path: root/src/misc_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-09-13 19:15:59 +0000
committerfrosch <frosch@openttd.org>2009-09-13 19:15:59 +0000
commitebd916be3def20902cf19ffd16555074728eb9c3 (patch)
treec7748d7612a61b9558ffd10ffb176e34584f2376 /src/misc_gui.cpp
parent5de9cc46b50b8e677395543c10b26b59c860212b (diff)
downloadopenttd-ebd916be3def20902cf19ffd16555074728eb9c3.tar.xz
(svn r17532) -Codechange: Rename several Invalidate functions to SetDirty for more consistency and distinguishability.
Diffstat (limited to 'src/misc_gui.cpp')
-rw-r--r--src/misc_gui.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp
index 7a4c7f015..2537677d7 100644
--- a/src/misc_gui.cpp
+++ b/src/misc_gui.cpp
@@ -1141,25 +1141,25 @@ HandleEditBoxResult QueryString::HandleEditBoxKey(Window *w, int wid, uint16 key
case WKC_RETURN: case WKC_NUM_ENTER: return HEBR_CONFIRM;
case (WKC_CTRL | 'V'):
- if (InsertTextBufferClipboard(&this->text)) w->InvalidateWidget(wid);
+ if (InsertTextBufferClipboard(&this->text)) w->SetWidgetDirty(wid);
break;
case (WKC_CTRL | 'U'):
DeleteTextBufferAll(&this->text);
- w->InvalidateWidget(wid);
+ w->SetWidgetDirty(wid);
break;
case WKC_BACKSPACE: case WKC_DELETE:
- if (DeleteTextBufferChar(&this->text, keycode)) w->InvalidateWidget(wid);
+ if (DeleteTextBufferChar(&this->text, keycode)) w->SetWidgetDirty(wid);
break;
case WKC_LEFT: case WKC_RIGHT: case WKC_END: case WKC_HOME:
- if (MoveTextBufferPos(&this->text, keycode)) w->InvalidateWidget(wid);
+ if (MoveTextBufferPos(&this->text, keycode)) w->SetWidgetDirty(wid);
break;
default:
if (IsValidChar(key, this->afilter)) {
- if (InsertTextBufferChar(&this->text, key)) w->InvalidateWidget(wid);
+ if (InsertTextBufferChar(&this->text, key)) w->SetWidgetDirty(wid);
} else {
state = Window::ES_NOT_HANDLED;
}
@@ -1171,7 +1171,7 @@ HandleEditBoxResult QueryString::HandleEditBoxKey(Window *w, int wid, uint16 key
void QueryString::HandleEditBox(Window *w, int wid)
{
if (HasEditBoxFocus(w, wid) && HandleCaret(&this->text)) {
- w->InvalidateWidget(wid);
+ w->SetWidgetDirty(wid);
/* When we're not the OSK, notify 'our' OSK to redraw the widget,
* so the caret changes appropriately. */
if (w->window_class != WC_OSK) {
@@ -1932,7 +1932,7 @@ public:
/* SLD_SAVE_GAME, SLD_SAVE_SCENARIO copy clicked name to editbox */
ttd_strlcpy(this->text.buf, file->title, this->text.maxsize);
UpdateTextBufferSize(&this->text);
- this->InvalidateWidget(SLWW_SAVE_OSK_TITLE);
+ this->SetWidgetDirty(SLWW_SAVE_OSK_TITLE);
}
} else {
/* Changed directory, need repaint. */
@@ -2078,7 +2078,7 @@ void ShowSaveLoadDialog(SaveLoadDialogMode mode)
void RedrawAutosave()
{
- InvalidateWindow(WC_STATUS_BAR, 0);
+ SetWindowDirty(WC_STATUS_BAR, 0);
}
void SetFiosType(const byte fiostype)