Automated Release Preparation

This commit is contained in:
2020-01-17 09:07:23 +01:00
parent 3af7470a05
commit 0c0917b294
91 changed files with 2587 additions and 1743 deletions

View File

@@ -1,7 +1,7 @@
#include "IntelliColorPicker.h"
IntelliColorPicker::IntelliColorPicker(){
initializeColors();
initializeColors();
}
IntelliColorPicker::~IntelliColorPicker(){
@@ -12,11 +12,11 @@ void IntelliColorPicker::swapColors(){
std::swap(firstColor, secondColor);
}
QColor IntelliColorPicker::getFirstColor() const{
QColor IntelliColorPicker::getFirstColor() const {
return this->firstColor;
}
QColor IntelliColorPicker::getSecondColor() const{
QColor IntelliColorPicker::getSecondColor() const {
return this->secondColor;
}
@@ -29,6 +29,6 @@ void IntelliColorPicker::setSecondColor(QColor Color){
}
void IntelliColorPicker::initializeColors(){
this->firstColor = QColor(255,0,0,255);
this->secondColor = QColor(0,0,0,255);
this->firstColor = QColor(255,0,0,255);
this->secondColor = QColor(0,0,0,255);
}