tweak(worldbuilder): Remove EULA code and data#2307
Merged
xezon merged 4 commits intoTheSuperHackers:mainfrom Feb 15, 2026
Merged
tweak(worldbuilder): Remove EULA code and data#2307xezon merged 4 commits intoTheSuperHackers:mainfrom
xezon merged 4 commits intoTheSuperHackers:mainfrom
Conversation
|
| Filename | Overview |
|---|---|
| Generals/Code/Tools/WorldBuilder/CMakeLists.txt | Removed EulaDialog.cpp and euladialog.h from the build source list. Straightforward removal. |
| Generals/Code/Tools/WorldBuilder/res/WorldBuilder.rc | Removed EULA dialog definition, EULA design guidelines, and EULA string table entries. All removals are clean. |
| Generals/Code/Tools/WorldBuilder/src/WorldBuilder.cpp | Removed #include "euladialog.h" and the EULA dialog modal check in InitInstance(). Application now launches directly without EULA prompt. |
| GeneralsMD/Code/Tools/WorldBuilder/CMakeLists.txt | Removed EulaDialog.cpp and euladialog.h from the build source list. Mirrors the Generals change. |
| GeneralsMD/Code/Tools/WorldBuilder/res/WorldBuilder.rc | Removed EULA dialog definition, EULA design guidelines, and EULA string table entries. All removals are clean. |
| GeneralsMD/Code/Tools/WorldBuilder/src/WorldBuilder.cpp | Removed #include "euladialog.h" and the EULA dialog modal check in InitInstance(). Application now launches directly without EULA prompt. |
Flowchart
flowchart TD
A["CWorldBuilderApp::InitInstance()"] -->|Before PR| B["EulaDialog::DoModal()"]
B -->|IDCANCEL| C["return FALSE\n(App exits)"]
B -->|IDOK| D["Continue initialization\n(SetUnhandledExceptionFilter, etc.)"]
A -->|After PR| D
D --> E["SplashScreen / Main Window"]
Last reviewed commit: a295426
xezon
approved these changes
Feb 15, 2026
Caball009
commented
Feb 15, 2026
xezon
approved these changes
Feb 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently every launch of the (Zero Hour) World Builder requires accepting the end-user license agreement. This is unnecessarily inconvenient. The Steam version of the WB doesn't show this window, and it was pointed out to me that we're not required to show this window under GPL v3.0. This PR should remove all code and data relating to the EULA window.
TODO: