removed functions from SettingsManager that shouldn't be there

This commit is contained in:
fourtf
2018-06-28 19:38:57 +02:00
parent b667183ca5
commit 5604ae6a67
75 changed files with 600 additions and 507 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
namespace chatterino {
EmoteData::EmoteData(chatterino::Image *_image)
EmoteData::EmoteData(Image *_image)
: image1x(_image)
{
}
@@ -16,7 +16,7 @@ bool EmoteData::isValid() const
return this->image1x != nullptr;
}
chatterino::Image *EmoteData::getImage(float scale) const
Image *EmoteData::getImage(float scale) const
{
int quality = getApp()->settings->preferredEmoteQuality;
@@ -31,7 +31,7 @@ chatterino::Image *EmoteData::getImage(float scale) const
}();
}
chatterino::Image *_image;
Image *_image;
if (quality == 3 && this->image3x != nullptr) {
_image = this->image3x;
} else if (quality >= 2 && this->image2x != nullptr) {