| 762 | namespace |
| 763 | { |
| 764 | std::string convertSystemClockToString(double systemClock) |
| 765 | { |
| 766 | auto time_t = static_cast<std::time_t>(systemClock); |
| 767 | std::tm* tm = std::localtime(&time_t); |
| 768 | |
| 769 | char buffer[100]; |
| 770 | std::strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", tm); |
| 771 | return std::string(buffer); |
| 772 | |
| 773 | } |
| 774 | } |
| 775 | |
| 776 | void StatisticsWindow::drawValuesAtMouseCursor( |
no outgoing calls
no test coverage detected