ndt-dev - [ndt-dev] [ndt] r1104 committed - Merged Issue151 branch into trunk
Subject: NDT-DEV email list created
List archive
- From:
- To:
- Subject: [ndt-dev] [ndt] r1104 committed - Merged Issue151 branch into trunk
- Date: Fri, 20 Jun 2014 08:56:14 +0000
Revision: 1104
Author:
Date: Fri Jun 20 08:55:48 2014 UTC
Log: Merged Issue151 branch into trunk
http://code.google.com/p/ndt/source/detail?r=1104
Modified:
/trunk
/trunk/flash-client/src/GUI.as
=======================================
--- /trunk/flash-client/src/GUI.as Fri Mar 21 10:33:50 2014 UTC
+++ /trunk/flash-client/src/GUI.as Fri Jun 20 08:55:48 2014 UTC
@@ -171,8 +171,10 @@
}
public function updateProgressText(completed:int, total:int):void {
- _progressText.text = "Completed " + completed + " of "
- + total + " tests";
+ if (_progressText) {
+ _progressText.text = "Completed " + completed + " of "
+ + total + " tests";
+ }
}
private function hideInitialScreen():void {
@@ -212,8 +214,10 @@
* Add text to the console while the NDT test is running.
*/
public function addConsoleOutput(text:String):void {
- _consoleText.htmlText += text;
- _consoleText.scrollV++;
+ if (_consoleText) {
+ _consoleText.htmlText += text;
+ _consoleText.scrollV++;
+ }
}
private function hideConsoleScreen():void {
@@ -377,8 +381,10 @@
private function clickRestart(e:MouseEvent):void {
hideResultsScreen();
- _consoleText.text = "";
- this.addChild(_consoleText);
+ if (_consoleText) {
+ _consoleText.text = "";
+ this.addChild(_consoleText);
+ }
_callerObj.startNDTTest();
}
- [ndt-dev] [ndt] r1104 committed - Merged Issue151 branch into trunk, ndt, 06/20/2014
Archive powered by MHonArc 2.6.16.