mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
34 lines
314 B
Plaintext
Executable File
34 lines
314 B
Plaintext
Executable File
|
|
String event = arg("source");
|
|
WindowContext context = argObj("windowContext");
|
|
AutoUpdater updater = (AutoUpdater)env("updater");
|
|
|
|
if ( event == "Install" )
|
|
{
|
|
updater.update(true, true);
|
|
}
|
|
else
|
|
{
|
|
((Dialog)context.get("/")).dispose();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|