renamed Themes to Theme
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
#include "common/LinkParser.hpp"
|
||||
#include "singletons/Emotes.hpp"
|
||||
#include "singletons/Resources.hpp"
|
||||
#include "singletons/Themes.hpp"
|
||||
#include "singletons/Theme.hpp"
|
||||
|
||||
#include <QDateTime>
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ MessageColor::MessageColor(Type _type)
|
||||
{
|
||||
}
|
||||
|
||||
const QColor &MessageColor::getColor(Themes &themeManager) const
|
||||
const QColor &MessageColor::getColor(Theme &themeManager) const
|
||||
{
|
||||
switch (this->type) {
|
||||
case Type::Custom:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "singletons/Themes.hpp"
|
||||
#include "singletons/Theme.hpp"
|
||||
|
||||
#include <QColor>
|
||||
|
||||
@@ -12,7 +12,7 @@ struct MessageColor {
|
||||
MessageColor(const QColor &color);
|
||||
MessageColor(Type type = Text);
|
||||
|
||||
const QColor &getColor(Themes &themeManager) const;
|
||||
const QColor &getColor(Theme &themeManager) const;
|
||||
|
||||
private:
|
||||
Type type;
|
||||
|
||||
Reference in New Issue
Block a user