Fix formatting
This commit is contained in:
parent
fd7209c8b7
commit
1cd2684eb5
|
@ -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 />
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
namespace Ui
|
||||
{
|
||||
class StructWidget;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue