Renamed private members

This commit is contained in:
fourtf
2018-07-06 19:23:47 +02:00
parent 6935619820
commit 280bb4cf8e
141 changed files with 1754 additions and 1861 deletions
+6 -7
View File
@@ -19,7 +19,7 @@ public:
inline bool isLightTheme() const
{
return this->isLight;
return this->isLight_;
}
struct TabColors {
@@ -136,16 +136,15 @@ public:
private:
void actuallyUpdate(double hue, double multiplier);
QColor blendColors(const QColor &color1, const QColor &color2, qreal ratio);
double middleLookupTable[360] = {};
double minLookupTable[360] = {};
void fillLookupTableValues(double (&array)[360], double from, double to, double fromValue,
double toValue);
bool isLight = false;
double middleLookupTable_[360] = {};
double minLookupTable_[360] = {};
pajlada::Signals::NoArgSignal repaintVisibleChatWidgets;
bool isLight_ = false;
pajlada::Signals::NoArgSignal repaintVisibleChatWidgets_;
friend class WindowManager;
};