changed to 80 max column

This commit is contained in:
fourtf
2018-08-06 21:17:03 +02:00
parent defa7e41fa
commit f71ff08e68
203 changed files with 3792 additions and 2405 deletions
+6 -3
View File
@@ -26,7 +26,8 @@ struct SelectionItem {
if (this->messageIndex < b.messageIndex) {
return true;
}
if (this->messageIndex == b.messageIndex && this->charIndex < b.charIndex) {
if (this->messageIndex == b.messageIndex &&
this->charIndex < b.charIndex) {
return true;
}
return false;
@@ -39,7 +40,8 @@ struct SelectionItem {
bool operator==(const SelectionItem &b) const
{
return this->messageIndex == b.messageIndex && this->charIndex == b.charIndex;
return this->messageIndex == b.messageIndex &&
this->charIndex == b.charIndex;
}
bool operator!=(const SelectionItem &b) const
@@ -74,7 +76,8 @@ struct Selection {
bool isSingleMessage() const
{
return this->selectionMin.messageIndex == this->selectionMax.messageIndex;
return this->selectionMin.messageIndex ==
this->selectionMax.messageIndex;
}
};