summaryrefslogtreecommitdiff
path: root/src/fios_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-06-12 14:52:42 +0000
committerfrosch <frosch@openttd.org>2010-06-12 14:52:42 +0000
commit00a5189161dda9953aa2047096012f5e60fcd58a (patch)
treef5f50fea77fce69549cfdd88cabfcafec1d36f73 /src/fios_gui.cpp
parent4b4e97695f47e237e6d6c2512783fbc33bf1060b (diff)
downloadopenttd-00a5189161dda9953aa2047096012f5e60fcd58a.tar.xz
(svn r19966) -Codechange: Use InvalidateData() in saveload GUI when appropiate.
Diffstat (limited to 'src/fios_gui.cpp')
-rw-r--r--src/fios_gui.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/fios_gui.cpp b/src/fios_gui.cpp
index ed6d6bdfa..527f3eddd 100644
--- a/src/fios_gui.cpp
+++ b/src/fios_gui.cpp
@@ -200,7 +200,7 @@ public:
}
SetObjectToPlace(SPR_CURSOR_ZZZ, PAL_NONE, HT_NONE, WC_MAIN_WINDOW, 0);
- BuildFileList();
+ this->OnInvalidateData(0);
ResetObjectToPlace();
@@ -327,8 +327,7 @@ public:
case SLWW_HOME_BUTTON: // OpenTTD 'button', jumps to OpenTTD directory
FiosBrowseTo(&o_dir);
- this->SetDirty();
- BuildFileList();
+ this->InvalidateData();
break;
case SLWW_DRIVES_DIRECTORIES_LIST: { // Click the listbox
@@ -362,9 +361,8 @@ public:
this->SetWidgetDirty(SLWW_SAVE_OSK_TITLE);
}
} else {
- /* Changed directory, need repaint. */
- this->SetDirty();
- BuildFileList();
+ /* Changed directory, need refresh. */
+ this->InvalidateData();
}
break;
}
@@ -421,13 +419,12 @@ public:
if (!FiosDelete(this->text.buf)) {
ShowErrorMessage(STR_ERROR_UNABLE_TO_DELETE_FILE, INVALID_STRING_ID, WL_ERROR);
} else {
- BuildFileList();
+ this->InvalidateData();
/* Reset file name to current date on successful delete */
if (_saveload_mode == SLD_SAVE_GAME) GenerateFileName();
}
UpdateTextBufferSize(&this->text);
- this->SetDirty();
} else if (this->IsWidgetLowered(SLWW_SAVE_GAME)) { // Save button clicked
_switch_mode = SM_SAVE;
FiosMakeSavegameName(_file_to_saveload.name, this->text.buf, sizeof(_file_to_saveload.name));