aboutsummaryrefslogtreecommitdiff
path: root/src/debug_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/debug_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/debug_functions.cpp')
-rw-r--r--src/debug_functions.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/debug_functions.cpp b/src/debug_functions.cpp
index 77f2f35a..f33a2c65 100644
--- a/src/debug_functions.cpp
+++ b/src/debug_functions.cpp
@@ -7,8 +7,7 @@ void call_error(QString p_message)
msgBox->setText("Error: " + p_message);
msgBox->setWindowTitle("Error");
-
- //msgBox->setWindowModality(Qt::NonModal);
+ // msgBox->setWindowModality(Qt::NonModal);
msgBox->exec();
}
@@ -19,7 +18,6 @@ void call_notice(QString p_message)
msgBox->setText(p_message);
msgBox->setWindowTitle("Notice");
-
- //msgBox->setWindowModality(Qt::NonModal);
+ // msgBox->setWindowModality(Qt::NonModal);
msgBox->exec();
}