From 70ed416dc6f2c25a90088306b3bd47ce49ad9937 Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 15 Jan 2020 12:02:36 +0100 Subject: [PATCH] Uncrustified Files --- src/GUI/IntelliPhotoGui.h | 4 ++-- src/IntelliHelper/IntelliToolsettings.cpp | 2 +- src/Tool/IntelliToolLine.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/GUI/IntelliPhotoGui.h b/src/GUI/IntelliPhotoGui.h index b3fdaf8..dda03e0 100644 --- a/src/GUI/IntelliPhotoGui.h +++ b/src/GUI/IntelliPhotoGui.h @@ -32,8 +32,8 @@ void UpdateGui(); protected: /*! - * \brief The closeEvent function handles closing events -*/ + * \brief The closeEvent function handles closing events + */ void closeEvent(QCloseEvent*event) override; private slots: diff --git a/src/IntelliHelper/IntelliToolsettings.cpp b/src/IntelliHelper/IntelliToolsettings.cpp index f973d66..fd67d5b 100644 --- a/src/IntelliHelper/IntelliToolsettings.cpp +++ b/src/IntelliHelper/IntelliToolsettings.cpp @@ -4,7 +4,7 @@ IntelliToolsettings::IntelliToolsettings() { lineWidth = 1; - innerAlpha = 255; + innerAlpha = 255; } IntelliToolsettings::~IntelliToolsettings(){ diff --git a/src/Tool/IntelliToolLine.cpp b/src/Tool/IntelliToolLine.cpp index 8ce3c6f..c7c7340 100644 --- a/src/Tool/IntelliToolLine.cpp +++ b/src/Tool/IntelliToolLine.cpp @@ -40,7 +40,7 @@ void IntelliToolLine::onMouseMoved(int x, int y){ if(this->isDrawing) { this->Canvas->image->drawPlain(Qt::transparent); QPoint next(x,y); - this->Canvas->image->drawLine(lineStartingPoint,next,colorPicker->getFirstColor(),Toolsettings->getLineWidth()); + this->Canvas->image->drawLine(lineStartingPoint,next,colorPicker->getFirstColor(),Toolsettings->getLineWidth()); } IntelliTool::onMouseMoved(x,y); }