Remove redundant methods

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad
2023-07-21 13:01:01 +01:00
parent f8b935ab37
commit 1a7c5693cc
5 changed files with 4 additions and 18 deletions

View File

@ -52,7 +52,7 @@
#include <Application.h>
#include <InstanceList.h>
#include "ui/themes/ThemeManager.h"
template <typename T> bool listsIntersect(const QList<T> &l1, const QList<T> t2)
{
@ -503,7 +503,7 @@ void InstanceView::setPaintCat(bool visible)
{
m_catVisible = visible;
if (visible)
m_catPixmap.load(APPLICATION->getCatPack());
m_catPixmap.load(APPLICATION->themeManager()->getCatPack());
else
m_catPixmap = QPixmap();
}