Changeset 425 in tmcsimulator
- Timestamp:
- 06/24/2019 04:47:05 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
IDE_metadata/NetBeans/TMCSim/build.xml (modified) (1 diff)
-
src/tmcsim/application.properties (modified) (1 diff)
-
src/tmcsim/client/CADlogDisplay.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE_metadata/NetBeans/TMCSim/build.xml
r408 r425 184 184 includes="tmcsim/cadsimulator/**, tmcsim/common/**, tmcsim/interfaces/**, 185 185 tmcsim/client/cadclientgui/**, tmcsim/cadmodels/**, atmsdriver/model/**, 186 tmcsim/ application.properties"186 tmcsim/highwaymodel/**, tmcsim/application.properties" 187 187 excludes="**/Test.class"> 188 188 <zipgroupfileset dir="dist/lib" includes="xercesImpl.jar,jaco-mp3-player-0.9.3.jar"/> -
trunk/src/tmcsim/application.properties
r424 r425 1 # Sun, 23 Jun 2019 14:38:34-07001 #Mon, 24 Jun 2019 18:00:23 -0700 2 2 3 Application.revision=42 33 Application.revision=424 4 4 5 Application.buildnumber=14 05 Application.buildnumber=142 -
trunk/src/tmcsim/client/CADlogDisplay.java
r416 r425 69 69 */ 70 70 private CADClientSocket theClientSocket; 71 /** 72 * Instance of the ClockView. 73 */ 74 private ClockView theView; 71 75 72 /** 76 73 * Properties object for the CADClient class. … … 132 129 sb.append(notesTable.getValueAt(row,1) + " "); // time 133 130 String initials = (String) notesTable.getValueAt(row,2); // initials 134 // If there are no user intials, it's a scripted item 135 if (initials.length() == 0) 131 // If there are user intials, include this item. 132 // Zero length initials mean it's a scripted item 133 if (initials.length() > 0) 136 134 { 137 initials = "Script"; 135 sb.append(initials + " "); 136 sb.append(notesTable.getValueAt(row,4) + "\n"); // notes 138 137 } 139 sb.append(initials + " ");140 sb.append(notesTable.getValueAt(row,4) + "\n"); // notes141 138 } 142 139 }
Note: See TracChangeset
for help on using the changeset viewer.
