Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r921 committed - Fixes to FlashIssue113

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r921 committed - Fixes to FlashIssue113


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r921 committed - Fixes to FlashIssue113
  • Date: Mon, 17 Feb 2014 10:27:04 +0000

Revision: 921
Author:

Date: Mon Feb 17 10:26:52 2014 UTC
Log: Fixes to FlashIssue113

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

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

=======================================
--- /branches/FlashIssue113/flash-client/src/GUI.as Wed Feb 12 10:01:46 2014 UTC
+++ /branches/FlashIssue113/flash-client/src/GUI.as Mon Feb 17 10:26:52 2014 UTC
@@ -247,7 +247,8 @@
_detailsButton.y = _resultsButton.y + verticalMargin;
_errorsButton.y = _detailsButton.y + verticalMargin;
_debugButton.y = _errorsButton.y + verticalMargin;
- _restartButton.y = CONFIG::debug ? _debugButton.y + 1.5 * verticalMargin : _errorsButton.y + 1.5 * verticalMargin;
+ _restartButton.y = CONFIG::debug ? _debugButton.y + verticalMargin
+ : _errorsButton.y + verticalMargin;
_resultsButton.x += _resultsButton.width / 2;
_detailsButton.x += _detailsButton.width / 2;
_errorsButton.x += _errorsButton.width / 2;
@@ -368,7 +369,7 @@
+ TestResults.getErrMsg();
_resultsTextField.scrollV = 0;
}
-
+
private function clickRestart(e:MouseEvent):void {
hideResultsScreen();
TestResults.clearResults();
=======================================
--- /branches/FlashIssue113/flash-client/src/TestResults.as Wed Feb 12 10:01:46 2014 UTC
+++ /branches/FlashIssue113/flash-client/src/TestResults.as Mon Feb 17 10:26:52 2014 UTC
@@ -143,7 +143,7 @@
TestResults.appendResultDetails(s2cTestResults + remoteTestResults);
// TODO(tiziana): If parsing mistake, log message "resultsParseError".
}
-
+
public static function clearResults():void {
_ndtTestStartTime = 0.0;
_ndtTestEndTime = 0.0;
@@ -162,6 +162,8 @@
ss2cSpeed = 0.0;
s2cTestResults = "";
remoteTestResults = "";
+ c2sTestSuccess = false;
+ s2cTestSuccess = false;
}
}
}


  • [ndt-dev] [ndt] r921 committed - Fixes to FlashIssue113, ndt, 02/17/2014

Archive powered by MHonArc 2.6.16.

Top of Page