forgot to ctrl+s header definitions fuck

This commit is contained in:
Crystalwarrior 2020-08-25 12:58:48 +03:00
parent ee3bad44c7
commit 6c62980ffc
2 changed files with 6 additions and 2 deletions

View File

@ -253,9 +253,8 @@ public:
void start_clock();
void start_clock(qint64 msecs);
void set_clock(qint64 msecs);
void pause_clock();
void stop_clock();
qint64 get_ping() { return ping_timer.elapsed(); }

View File

@ -35,6 +35,11 @@ void AOClockLabel::set(int msecs, bool update_text)
}
}
void AOClockLabel::pause()
{
timer.stop();
}
void AOClockLabel::stop()
{
this->setText("00:00:00.000");