ffdf5a144c
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
12 lines
194 B
C++
12 lines
194 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
// format: 1h 23m 42s
|
|
QString formatTime(int totalSeconds);
|
|
QString formatTime(QString totalSecondsString);
|
|
|
|
} // namespace chatterino
|