(svn r15215) -Fix: various MSVC x64 compiler warnings

This commit is contained in:
rubidium
2009-01-23 02:01:05 +00:00
parent 92f5c6b1da
commit 83e1288c6a
5 changed files with 6 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ struct AIListWindow : public Window {
this->resize.step_height = 14;
this->vscroll.cap = (this->widget[AIL_WIDGET_LIST].bottom - this->widget[AIL_WIDGET_LIST].top) / 14 + 1;
this->widget[AIL_WIDGET_LIST].data = (this->vscroll.cap << 8) + 1;
SetVScrollCount(this, this->ai_info_list->size() + 1);
SetVScrollCount(this, (int)this->ai_info_list->size() + 1);
/* Try if we can find the currently selected AI */
this->selected = -1;
@@ -251,7 +251,7 @@ struct AISettingsWindow : public Window {
this->resize.step_height = 14;
this->vscroll.cap = (this->widget[AIS_WIDGET_BACKGROUND].bottom - this->widget[AIS_WIDGET_BACKGROUND].top) / 14 + 1;
this->widget[AIS_WIDGET_BACKGROUND].data = (this->vscroll.cap << 8) + 1;
SetVScrollCount(this, this->ai_config->GetConfigList()->size());
SetVScrollCount(this, (int)this->ai_config->GetConfigList()->size());
this->FindWindowPlacementAndResize(desc);
}