[tuxdroid-svn] r5351 - software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-inst
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-09-10 10:52:20
|
Author: jerome
Date: 2009-09-10 12:52:06 +0200 (Thu, 10 Sep 2009)
New Revision: 5351
Modified:
software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas
Log:
* Added dialog box in case of 3 failed tests.
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-10 10:41:13 UTC (rev 5350)
+++ software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas 2009-09-10 10:52:06 UTC (rev 5351)
@@ -92,6 +92,11 @@
CANCEL = 'Cancel';
+ TEST_FAILD = 'There seems to be a problem with your software installation. ' +
+ 'Please try to re-install the Tux Droid software. In case that does not ' +
+ 'help please visit our forums or contact customer support.';
+
+
type
TForm1 = class(TForm)
IdAntiFreeze1: TIdAntiFreeze;
@@ -509,6 +514,12 @@
AskAndSend();
end;
}
+ else { TB removed after 30th September }
+ begin
+ Form1.Hide;
+ BoxOk1.showMessageDialog(gettext(TEST_FAILD), gettext(OK));
+ Application.Terminate;
+ end;
end;
end;
|