changed notation

This commit is contained in:
fourtf
2017-01-18 04:33:30 +01:00
parent 552e4c957a
commit 10e4a0f785
61 changed files with 1214 additions and 1051 deletions
+7 -6
View File
@@ -7,33 +7,34 @@ class AppSettings
{
public:
static Word::Type
wordTypeMask()
getWordTypeMask()
{
return m_wordTypeMask;
return wordTypeMask;
}
static bool isIgnoredEmote(const QString &emote);
static qreal
emoteScale()
getEmoteScale()
{
return 1;
}
static qreal
badgeScale()
getBadgeScale()
{
return 1;
}
static bool
scaleEmotesByLineHeight()
getScaleEmotesByLineHeight()
{
return false;
}
private:
AppSettings();
static Word::Type m_wordTypeMask;
static Word::Type wordTypeMask;
};
#endif // APPSETTINGS_H