From c8ed324a3dd279a4c33db1557390619a4f867f65 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Tue, 14 Mar 2023 09:34:13 +0200 Subject: [PATCH] Remove unused functions --- src/debug_console.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/debug_console.cpp b/src/debug_console.cpp index 8e0a2768bb..7dd31816cd 100644 --- a/src/debug_console.cpp +++ b/src/debug_console.cpp @@ -74,11 +74,6 @@ static QString tableRow(const QString &title, const T &argument) return QStringLiteral("%1%2").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(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) {