[tuxdroid-svn] r5454 - software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-inst
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-09-21 08:55:49
|
Author: remi
Date: 2009-09-21 10:55:29 +0200 (Mon, 21 Sep 2009)
New Revision: 5454
Modified:
software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas
Log:
* Fixed TuxBox2.0 launch
Modified: software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas
===================================================================
--- software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas 2009-09-21 08:42:54 UTC (rev 5453)
+++ software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas 2009-09-21 08:55:29 UTC (rev 5454)
@@ -573,7 +573,7 @@
begin
//This function handle the 'Finish' button click.
command := '"' + TuxUtils.GetTuxDroidBinariesDirectory() + '\tuxbox_launcher.exe' + '"';
- ShellExecute(HWND(nil), 'open', PChar(command), PChar('keep'), nil, SW_SHOW);
+ ShellExecute(HWND(nil), 'open', PChar(command), nil, nil, SW_SHOW);
end;
//We provide the time to tuxbox to be started faster.
|