Changeset 361 in tmcsimulator for trunk/src


Ignore:
Timestamp:
04/11/2019 08:24:22 AM (7 years ago)
Author:
jdalbey
Message:

modify CADClient AssignedIncidents?.java to fix defect #142. Also fix minor typos in full_script_2016.xml

Location:
trunk/src/tmcsim
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/application.properties

    r360 r361  
    1 #Thu, 04 Apr 2019 15:32:24 -0700 
     1#Thu, 11 Apr 2019 09:48:15 -0700 
    22 
    3 Application.revision=356 
     3Application.revision=360 
    44 
    55Application.buildnumber=121 
  • trunk/src/tmcsim/client/CADClient.java

    r310 r361  
    260260        // Create the CAD Client thread to run the CADClientModel Object. 
    261261        Thread clientThread = new Thread(theClientScreenModel); 
     262         
     263        // Log that everything started okay 
    262264        clientThread.start(); 
     265            cadClientLogger.logp(Level.INFO, "CAD Client", 
     266                    "Constructor", 
     267                    "Initialization complete."); 
    263268 
    264269        ensureProperShutdown(); 
     270         
     271         
    265272    } 
    266273 
  • trunk/src/tmcsim/client/cadclientgui/screens/AssignedIncidents.java

    r290 r361  
    139139                            // Fetch the unit's current status from server 
    140140                            UnitStatusEnums ustatus = ScreenManager.theCoordinator.getCadDataUnitStatus(unitname); 
     141                            // Ad-hoc incidents don't have a status so use WHITE 
     142                            comp.setForeground(Color.WHITE); 
    141143                            // Decide which color to use for displaying the status 
    142144                            switch (ustatus) 
Note: See TracChangeset for help on using the changeset viewer.