aboutsummaryrefslogtreecommitdiff
path: root/src/debug_functions.cpp
diff options
context:
space:
mode:
authorCrystalwarrior <varsash@gmail.com>2020-05-22 01:18:24 +0300
committerCrystalwarrior <varsash@gmail.com>2020-05-22 01:18:24 +0300
commitc8e12558cdd3fd0769b81679ad09edf1f29b780f (patch)
tree7dae2225e574c3ee55d6b82a1d2f399db4ace5c0 /src/debug_functions.cpp
parentdfac0652c8eb9bd48ceea7ae755e9c2f7e5cb1a2 (diff)
Clang-ify the code with this styling using Visual Studio Code:
{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Stroustrup, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4, NamespaceIndentation: All } (this is the Visual Studio preset with only "BreakBeforeBraces" changed from Allman to Stroustrup)
Diffstat (limited to 'src/debug_functions.cpp')
-rw-r--r--src/debug_functions.cpp24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/debug_functions.cpp b/src/debug_functions.cpp
index a790610d..ba189ec0 100644
--- a/src/debug_functions.cpp
+++ b/src/debug_functions.cpp
@@ -1,28 +1,26 @@
-#include <QMessageBox>
#include <QCoreApplication>
+#include <QMessageBox>
#include "debug_functions.h"
void call_error(QString p_message)
{
- QMessageBox *msgBox = new QMessageBox;
+ QMessageBox *msgBox = new QMessageBox;
- msgBox->setText(QCoreApplication::translate("debug_functions", "Error: %1").arg(p_message));
- msgBox->setWindowTitle(QCoreApplication::translate("debug_functions", "Error"));
+ msgBox->setText(QCoreApplication::translate("debug_functions", "Error: %1").arg(p_message));
+ msgBox->setWindowTitle(QCoreApplication::translate("debug_functions", "Error"));
-
- //msgBox->setWindowModality(Qt::NonModal);
- msgBox->exec();
+ //msgBox->setWindowModality(Qt::NonModal);
+ msgBox->exec();
}
void call_notice(QString p_message)
{
- QMessageBox *msgBox = new QMessageBox;
-
- msgBox->setText(p_message);
- msgBox->setWindowTitle(QCoreApplication::translate("debug_functions", "Notice"));
+ QMessageBox *msgBox = new QMessageBox;
+ msgBox->setText(p_message);
+ msgBox->setWindowTitle(QCoreApplication::translate("debug_functions", "Notice"));
- //msgBox->setWindowModality(Qt::NonModal);
- msgBox->exec();
+ //msgBox->setWindowModality(Qt::NonModal);
+ msgBox->exec();
}