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 -6
View File
@@ -8,23 +8,23 @@ struct EmoteValue {
public:
int getSet()
{
return _set;
return set_;
}
int getId()
{
return _id;
return id_;
}
const QString &getChannelName()
{
return _channelName;
return channelName_;
}
private:
int _set;
int _id;
QString _channelName;
int set_;
int id_;
QString channelName_;
};
} // namespace chatterino