tweak(worldbuilder): Remove EULA code and data#2307
Open
Caball009 wants to merge 3 commits intoTheSuperHackers:mainfrom
Open
tweak(worldbuilder): Remove EULA code and data#2307Caball009 wants to merge 3 commits intoTheSuperHackers:mainfrom
Caball009 wants to merge 3 commits intoTheSuperHackers:mainfrom
Conversation
Greptile Overview
|
| Filename | Overview |
|---|---|
| GeneralsMD/Code/Tools/WorldBuilder/res/WorldBuilder.rc | Removed EULA dialog resource and all EULA text string resources |
| GeneralsMD/Code/Tools/WorldBuilder/src/WorldBuilder.cpp | Removed include of euladialog.h and removed EULA dialog modal call from InitInstance() |
Flowchart
flowchart TD
A[World Builder Launch] --> B{BEFORE: EULA Dialog}
B -->|Accept| C[Initialize Application]
B -->|Cancel| D[Exit Application]
C --> E[World Builder Runs]
F[World Builder Launch] --> G[AFTER: Direct Initialization]
G --> H[World Builder Runs]
style B fill:#ffcccc
style D fill:#ffcccc
style G fill:#ccffcc
style H fill:#ccffcc
Last reviewed commit: e5b11af
| @@ -1693,17 +1693,6 @@ BEGIN | |||
| BS_AUTOCHECKBOX | BS_LEFTTEXT | WS_TABSTOP,40,51,95,14 | |||
There was a problem hiding this comment.
Leftover EULA resource definitions remain in resource.h: IDD_EULA_AGREEMENT (line 134), IDC_EDIT1 (line 379), and IDS_EULA_AGREEMENT1-5 (lines 752-756). These should be removed.
Prompt To Fix With AI
This is a comment left during a code review.
Path: GeneralsMD/Code/Tools/WorldBuilder/res/WorldBuilder.rc
Line: 1693:1693
Comment:
Leftover EULA resource definitions remain in `resource.h`: `IDD_EULA_AGREEMENT` (line 134), `IDC_EDIT1` (line 379), and `IDS_EULA_AGREEMENT1-5` (lines 752-756). These should be removed.
How can I resolve this? If you propose a fix, please make it concise.
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: