diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-07-21 13:01:01 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-07-21 13:01:01 +0100 |
commit | 1a7c5693cc9d21cf974ad56e55a3ca07a22c8477 (patch) | |
tree | acd6d3b5f6d6fddb863bd232dd6d6fd1553a458f /launcher/ui/instanceview/InstanceView.cpp | |
parent | f8b935ab37ccc2dfd70412ef11029b79c88b14f0 (diff) | |
download | PrismLauncher-1a7c5693cc9d21cf974ad56e55a3ca07a22c8477.tar.gz PrismLauncher-1a7c5693cc9d21cf974ad56e55a3ca07a22c8477.tar.bz2 PrismLauncher-1a7c5693cc9d21cf974ad56e55a3ca07a22c8477.zip |
Remove redundant methods
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/ui/instanceview/InstanceView.cpp')
-rw-r--r-- | launcher/ui/instanceview/InstanceView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/instanceview/InstanceView.cpp b/launcher/ui/instanceview/InstanceView.cpp index 05f0004d..155550e1 100644 --- a/launcher/ui/instanceview/InstanceView.cpp +++ b/launcher/ui/instanceview/InstanceView.cpp @@ -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(); } |