Uncrustified Files

This commit is contained in:
2020-01-15 12:02:36 +01:00
parent af5a05faf8
commit 70ed416dc6
3 changed files with 4 additions and 4 deletions

View File

@@ -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:

View File

@@ -4,7 +4,7 @@
IntelliToolsettings::IntelliToolsettings()
{
lineWidth = 1;
innerAlpha = 255;
innerAlpha = 255;
}
IntelliToolsettings::~IntelliToolsettings(){

View File

@@ -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);
}