Files
HeidiSQL/extra/jheidi/updateDialogEvents.ajl
2008-06-11 01:22:21 +00:00

34 lines
313 B
Plaintext
Executable File

String who = arg("source");
WindowContext context = argObj("windowContext");
AutoUpdater updater = (AutoUpdater)env("updater");
if ( "Install".equals(who) )
{
updater.update(true, true);
}
else
{
((Dialog)context.get("/")).dispose();
}