File diff r23482:de566f8c088d → r23483:3733e6b8ff17
src/ai/ai_gui.cpp
Show inline comments
 
@@ -919,27 +919,25 @@ struct AIConfigWindow : public Window {
 
			case WID_AIC_CONFIGURE: // change the settings for an AI
 
				ShowAISettingsWindow((CompanyID)this->selected_slot);
 
				break;
 

	
 
			case WID_AIC_CLOSE:
 
				delete this;
 
				break;
 

	
 
			case WID_AIC_CONTENT_DOWNLOAD:
 
				if (!_network_available) {
 
					ShowErrorMessage(STR_NETWORK_ERROR_NOTAVAILABLE, INVALID_STRING_ID, WL_ERROR);
 
				} else {
 
#if defined(ENABLE_NETWORK)
 
					ShowNetworkContentListWindow(NULL, CONTENT_TYPE_AI, CONTENT_TYPE_GAME);
 
#endif
 
				}
 
				break;
 
		}
 
	}
 

	
 
	/**
 
	 * Some data on this window has become invalid.
 
	 * @param data Information about the changed data.
 
	 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
 
	 */
 
	virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
 
	{