diff options
author | rubidium <rubidium@openttd.org> | 2009-11-15 10:26:01 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-15 10:26:01 +0000 |
commit | 3d2d7af88f95c2eb4e349c537f74eaf02e8db7f0 (patch) | |
tree | 0bdb2f03353e6bb6431da2f85db3bfa1812ce348 /src/ai | |
parent | 1b72fa84e25c38d3642acf9a7cbbaf8d59ecb9e8 (diff) | |
download | openttd-3d2d7af88f95c2eb4e349c537f74eaf02e8db7f0.tar.xz |
(svn r18086) -Codechange: remove 'widget' from WindowDesc
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index a88f56aa0..ccc2249fc 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -236,7 +236,7 @@ static const WindowDesc _ai_list_desc( WDP_CENTER, WDP_CENTER, 200, 234, 200, 234, WC_AI_LIST, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE, - NULL, _nested_ai_list_widgets, lengthof(_nested_ai_list_widgets) + _nested_ai_list_widgets, lengthof(_nested_ai_list_widgets) ); static void ShowAIListWindow(CompanyID slot) @@ -435,7 +435,7 @@ static const WindowDesc _ai_settings_desc( WDP_CENTER, WDP_CENTER, 200, 208, 500, 208, WC_AI_SETTINGS, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE, - NULL, _nested_ai_settings_widgets, lengthof(_nested_ai_settings_widgets) + _nested_ai_settings_widgets, lengthof(_nested_ai_settings_widgets) ); static void ShowAISettingsWindow(CompanyID slot) @@ -484,7 +484,7 @@ static const WindowDesc _ai_config_desc( WDP_CENTER, WDP_CENTER, 300, 172, 300, 172, WC_GAME_OPTIONS, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS, - NULL, _nested_ai_config_widgets, lengthof(_nested_ai_config_widgets) + _nested_ai_config_widgets, lengthof(_nested_ai_config_widgets) ); /** @@ -952,7 +952,7 @@ static const WindowDesc _ai_debug_desc( WDP_AUTO, WDP_AUTO, 299, 241, 299, 241, WC_AI_DEBUG, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE, - NULL, _nested_ai_debug_widgets, lengthof(_nested_ai_debug_widgets) + _nested_ai_debug_widgets, lengthof(_nested_ai_debug_widgets) ); void ShowAIDebugWindow(CompanyID show_company) |