diff --git a/src/common/Version.cpp b/src/common/Version.cpp index dc3c04d67..42185ae26 100644 --- a/src/common/Version.cpp +++ b/src/common/Version.cpp @@ -20,7 +20,8 @@ Version::Version() #ifdef CHATTERINO_NIGHTLY_VERSION_STRING this->dateOfBuild_ = QString(FROM_EXTERNAL_DEFINE(CHATTERINO_NIGHTLY_VERSION_STRING)) - .remove('"').split(' ')[0]; + .remove('"') + .split(' ')[0]; #endif // "Full" version string, as displayed in window title diff --git a/src/common/Version.hpp b/src/common/Version.hpp index dd3baa9fa..75b6b1fee 100644 --- a/src/common/Version.hpp +++ b/src/common/Version.hpp @@ -2,7 +2,7 @@ #include -#define CHATTERINO_VERSION "2.1.4" +#define CHATTERINO_VERSION "2.1.5" #if defined(Q_OS_WIN) # define CHATTERINO_OS "win" @@ -35,4 +35,4 @@ private: QString fullVersion_; }; -}; +}; // namespace chatterino diff --git a/src/providers/bttv/BttvEmotes.cpp b/src/providers/bttv/BttvEmotes.cpp index 6b7c9ee2f..3b3c0d234 100644 --- a/src/providers/bttv/BttvEmotes.cpp +++ b/src/providers/bttv/BttvEmotes.cpp @@ -1,5 +1,8 @@ #include "providers/bttv/BttvEmotes.hpp" +#include +#include + #include "common/Common.hpp" #include "common/NetworkRequest.hpp" #include "debug/Log.hpp" @@ -8,9 +11,6 @@ #include "messages/ImageSet.hpp" #include "providers/twitch/TwitchChannel.hpp" -#include -#include - namespace chatterino { namespace { Url getEmoteLink(QString urlTemplate, const EmoteId &id,