mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed minor issues
This commit is contained in:
parent
fb230423f6
commit
c5441c6d4a
|
@ -317,7 +317,7 @@ HEADERS += \
|
|||
src/util/IrcHelpers.hpp \
|
||||
src/util/LayoutCreator.hpp \
|
||||
src/util/PostToThread.hpp \
|
||||
src/util/QstringHash.hpp \
|
||||
src/util/QStringHash.hpp \
|
||||
src/util/RapidjsonHelpers.hpp \
|
||||
src/util/RemoveScrollAreaBackground.hpp \
|
||||
src/util/SharedPtrElementLess.hpp \
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "common/SignalVectorModel.hpp"
|
||||
#include "controllers/accounts/Account.hpp"
|
||||
#include "util/QstringHash.hpp"
|
||||
#include "util/QStringHash.hpp"
|
||||
|
||||
#include <unordered_map>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
namespace chatterino {
|
||||
|
||||
// https://stackoverflow.com/a/13014491
|
||||
static QString combinePath(const QString &a, const QString &b)
|
||||
inline QString combinePath(const QString &a, const QString &b)
|
||||
{
|
||||
return QDir::cleanPath(a + QDir::separator() + b);
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace chatterino {
|
||||
|
||||
static float distanceBetweenPoints(const QPointF &p1, const QPointF &p2)
|
||||
inline float distanceBetweenPoints(const QPointF &p1, const QPointF &p2)
|
||||
{
|
||||
QPointF tmp = p1 - p2;
|
||||
|
||||
|
|
Loading…
Reference in a new issue