diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-10 20:41:52 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-11 10:57:57 +0200 |
commit | ea43d0f687391db08459ea43794ee97b93e654fa (patch) | |
tree | 76a8bbbbe3fe4bb0518da61970732432c2e3d02b /launcher/ui | |
parent | ef6f9487f48ee6f114d47108977380fb4c278597 (diff) | |
download | PrismLauncher-ea43d0f687391db08459ea43794ee97b93e654fa.tar.gz PrismLauncher-ea43d0f687391db08459ea43794ee97b93e654fa.tar.bz2 PrismLauncher-ea43d0f687391db08459ea43794ee97b93e654fa.zip |
fix: fix more warnings
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/themes/CatPack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/themes/CatPack.h b/launcher/ui/themes/CatPack.h index b03a19f0..fdd117a7 100644 --- a/launcher/ui/themes/CatPack.h +++ b/launcher/ui/themes/CatPack.h @@ -52,8 +52,8 @@ class BasicCatPack : public CatPack { public: BasicCatPack(QString id, QString name) : m_id(id), m_name(name) {} BasicCatPack(QString id) : BasicCatPack(id, id) {} - virtual QString id() { return m_id; }; - virtual QString name() { return m_name; }; + virtual QString id() { return m_id; } + virtual QString name() { return m_name; } virtual QString path(); protected: |