Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r957 committed - Small fixes on FlashIssue117 branch

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r957 committed - Small fixes on FlashIssue117 branch


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r957 committed - Small fixes on FlashIssue117 branch
  • Date: Mon, 24 Feb 2014 07:51:11 +0000

Revision: 957
Author:

Date: Mon Feb 24 07:51:01 2014 UTC
Log: Small fixes on FlashIssue117 branch

http://code.google.com/p/ndt/source/detail?r=957

Modified:
/branches/FlashIssue117/flash-client/src/GUI.as
/branches/FlashIssue117/flash-client/src/TestResults.as

=======================================
--- /branches/FlashIssue117/flash-client/src/GUI.as Fri Feb 21 13:27:38 2014 UTC
+++ /branches/FlashIssue117/flash-client/src/GUI.as Mon Feb 24 07:51:01 2014 UTC
@@ -326,10 +326,12 @@
+ "</font> Mbps</font><br><br>");
}
}
- if (TestResults.getErrMsg() != "") {
- _summaryResultText += "There were some errors during tests:<br>"
- + TestResults.getErrMsg();
- }
+ if (TestResults.getErrMsg() != "") {
+ _summaryResultText += "There were some errors during the test:<br>"
+ + "<font color=\"#CC3333\"><b>"
+ + TestResults.getErrMsg()
+ + "</b></font>" + "\n";
+ }
}

private function clickResults(e:MouseEvent):void {
=======================================
--- /branches/FlashIssue117/flash-client/src/TestResults.as Fri Feb 21 13:27:38 2014 UTC
+++ /branches/FlashIssue117/flash-client/src/TestResults.as Mon Feb 24 07:51:01 2014 UTC
@@ -80,9 +80,9 @@
}

public static function appendErrMsg(msg:String):void {
- _errMsg += "<font color=\"#FE9A2E\"><b>" + msg + "</b></font>" + "\n";
+ _errMsg += msg + "\n";
NDTUtils.callExternalFunction("appendErrors", msg);
- appendDebugMsg("<font color=\"#FE9A2E\"><b>" + msg + "</b></font>");
+ appendDebugMsg(msg);
}

public static function appendDebugMsg(msg:String):void {


  • [ndt-dev] [ndt] r957 committed - Small fixes on FlashIssue117 branch, ndt, 02/24/2014

Archive powered by MHonArc 2.6.16.

Top of Page