mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
This has historically been done in the Recent Messages API, but this functionality is being moved to Chatterino instead * Remove `clearchatToNotice=true` query parameter to the Recent Messages API
11 lines
194 B
C++
11 lines
194 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
// format: 1h 23m 42s
|
|
QString formatTime(int totalSeconds);
|
|
QString formatTime(QString totalSecondsString);
|
|
|
|
} // namespace chatterino
|