| 393 | { |
| 394 | time_t currentTime; // for logging current time |
| 395 | struct tm *localTime; // for logging current time |
| 396 | time(¤tTime); // Get the current time |
| 397 | localTime = localtime(¤tTime); // Convert the current time to the local time |
| 398 | wxString s; |
nothing calls this directly
no outgoing calls
no test coverage detected