We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V1:
MyFunc() { Gui, Add, Text,, Gui Gui, Show, w150 } MyFunc() F1::Gui, Destroy
V2 (Converted):
MyFunc() { myGui := Gui() myGui.Add("Text", , "Gui") myGui.Show("w150") } MyFunc() F1::myGui.Destroy()
V2 (Expected):
MyFunc() { global myGui ; V1toV2: Made function global myGui := Gui() myGui.Add("Text", , "Gui") myGui.Show("w150") } MyFunc() F1::myGui.Destroy()
Same should apply to menu (untested)
The text was updated successfully, but these errors were encountered:
improve #298; added failing test
f494252
added f tests for #294 #295 #296 #298 #299 #300 #301 cleanup return tests
No branches or pull requests
V1:
V2 (Converted):
V2 (Expected):
Same should apply to menu (untested)
The text was updated successfully, but these errors were encountered: