Definition at line 162 of file AlertTimeLine.h. Referenced by DrawCurrentTime(), DrawTicks(), and Impala::Application::SDash::IdentificationPane::WindowMouseEvent(). 00163 { 00164 hours = timeInSeconds / 3600; 00165 minutes = (timeInSeconds % 3600) / 60; 00166 seconds = (timeInSeconds % 3600) % 60; 00167 }
|