1
0
Fork 0

Fix formatting

This commit is contained in:
Duncan Ogilvie 2025-01-25 03:38:11 +01:00
parent fd7209c8b7
commit 1cd2684eb5
6 changed files with 103 additions and 101 deletions

View File

@ -15,7 +15,7 @@
<value>style=allman, convert-tabs, align-pointer=type, align-reference=middle, indent=spaces, indent-namespaces, indent-col1-comments, pad-oper, unpad-paren, keep-one-line-blocks, close-templates</value>
</setting>
<setting name="Ignore" serializeAs="String">
<value />
<value>src/cross/vendor</value>
</setting>
<setting name="License" serializeAs="String">
<value />

View File

@ -52,7 +52,8 @@ RemoteTable::RemoteTable(QWidget* parent)
uint64_t minTime = UINT64_MAX;
uint64_t maxTime = 0;
dsint totalDelta = 0;
for(const auto&[time,delta] : mScrollEvents) {
for(const auto&[time, delta] : mScrollEvents)
{
uint64_t timeMs = std::chrono::duration_cast<std::chrono::milliseconds>(time.time_since_epoch()).count();
minTime = std::min(minTime, timeMs);
maxTime = std::max(maxTime, timeMs);

View File

@ -3,7 +3,8 @@
#include <QWidget>
namespace Ui {
namespace Ui
{
class StructWidget;
}