summaryrefslogtreecommitdiff
path: root/src/motddialog.cpp
diff options
context:
space:
mode:
authorMikaël Capelle <capelle.mikael@gmail.com>2022-05-17 11:47:01 +0200
committerMikaël Capelle <capelle.mikael@gmail.com>2023-07-09 17:20:40 +0200
commitd13f6bb870cdda71257f665367be8ef9fca86255 (patch)
tree52e214718478f1e52856572f5aa1a2ac58537f9f /src/motddialog.cpp
parent86bb01ba9eac879d3685c439ac9da0028bc4bc80 (diff)
Apply clang-format.
Diffstat (limited to 'src/motddialog.cpp')
-rw-r--r--src/motddialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/motddialog.cpp b/src/motddialog.cpp
index 94a34d58..979649cb 100644
--- a/src/motddialog.cpp
+++ b/src/motddialog.cpp
@@ -19,16 +19,16 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include "motddialog.h"
#include "bbcode.h"
-#include "utility.h"
-#include "ui_motddialog.h"
#include "organizercore.h"
-#include <utility.h>
+#include "ui_motddialog.h"
+#include "utility.h"
#include <Shlwapi.h>
+#include <utility.h>
using namespace MOBase;
-MotDDialog::MotDDialog(const QString &message, QWidget *parent)
- : QDialog(parent), ui(new Ui::MotDDialog)
+MotDDialog::MotDDialog(const QString& message, QWidget* parent)
+ : QDialog(parent), ui(new Ui::MotDDialog)
{
ui->setupUi(this);
ui->motdView->setHtml(BBCode::convertToHTML(message));
@@ -45,7 +45,7 @@ void MotDDialog::on_okButton_clicked()
this->close();
}
-void MotDDialog::linkClicked(const QUrl &url)
+void MotDDialog::linkClicked(const QUrl& url)
{
shell::Open(url);
}