Changeset 425 in tmcsimulator for trunk/src/tmcsim
- Timestamp:
- 06/24/2019 04:47:05 PM (7 years ago)
- Location:
- trunk/src/tmcsim
- Files:
-
- 2 edited
-
application.properties (modified) (1 diff)
-
client/CADlogDisplay.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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.
