aboutsummaryrefslogtreecommitdiff
path: root/src/misc_functions.cpp
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2020-05-22 17:13:17 -0500
committeroldmud0 <oldmud0@users.noreply.github.com>2020-05-22 17:13:37 -0500
commit8928aa2718378bc42d20d5bbe6c17be68d65d6f3 (patch)
treebf90d3e73519d58cc89e2135b613e308ac0a0ed8 /src/misc_functions.cpp
parent156a760ebab6839c53f9c613881f0937e814414a (diff)
Perform clang-format
If you don't want to see this commit on blames, use the hidden whitespace option on GitHub, or use `-w` in git-blame.
Diffstat (limited to 'src/misc_functions.cpp')
-rw-r--r--src/misc_functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc_functions.cpp b/src/misc_functions.cpp
index 23520551..cc144153 100644
--- a/src/misc_functions.cpp
+++ b/src/misc_functions.cpp
@@ -4,6 +4,6 @@ void delay(int p_milliseconds)
{
QTime dieTime = QTime::currentTime().addMSecs(p_milliseconds);
- while(QTime::currentTime() < dieTime)
+ while (QTime::currentTime() < dieTime)
QCoreApplication::processEvents(QEventLoop::AllEvents, 100);
}