Remove unused functions
This commit is contained in:
parent
c91b90c58a
commit
c8ed324a3d
1 changed files with 0 additions and 10 deletions
|
@ -74,11 +74,6 @@ static QString tableRow(const QString &title, const T &argument)
|
|||
return QStringLiteral("<tr><td>%1</td><td>%2</td></tr>").arg(title).arg(argument);
|
||||
}
|
||||
|
||||
static QString timestampRow(uint32_t timestamp)
|
||||
{
|
||||
return tableRow(i18n("Timestamp"), timestamp);
|
||||
}
|
||||
|
||||
static QString timestampRow(std::chrono::microseconds timestamp)
|
||||
{
|
||||
return tableRow(i18n("Timestamp"), std::chrono::duration_cast<std::chrono::milliseconds>(timestamp).count());
|
||||
|
@ -89,11 +84,6 @@ static QString timestampRowUsec(std::chrono::microseconds timestamp)
|
|||
return tableRow(i18n("Timestamp (µsec)"), timestamp.count());
|
||||
}
|
||||
|
||||
static QString timestampRowUsec(uint64_t timestamp)
|
||||
{
|
||||
return tableRow(i18n("Timestamp (µsec)"), timestamp);
|
||||
}
|
||||
|
||||
static QString buttonToString(Qt::MouseButton button)
|
||||
{
|
||||
switch (button) {
|
||||
|
|
Loading…
Reference in a new issue