diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-16 20:34:07 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-10 12:19:15 +0200 |
commit | 15c5bbcf222e9baa705ec0dfe5504b9db2d030ae (patch) | |
tree | 775709f036726aff249246afd4c7886c77a981b6 /launcher/ui/pages/global/ProxyPage.h | |
parent | c36342371819a4983b5ac2b928acc6a78b857ed8 (diff) | |
download | PrismLauncher-15c5bbcf222e9baa705ec0dfe5504b9db2d030ae.tar.gz PrismLauncher-15c5bbcf222e9baa705ec0dfe5504b9db2d030ae.tar.bz2 PrismLauncher-15c5bbcf222e9baa705ec0dfe5504b9db2d030ae.zip |
fix: fix slots for Qt 6
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui/pages/global/ProxyPage.h')
-rw-r--r-- | launcher/ui/pages/global/ProxyPage.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/launcher/ui/pages/global/ProxyPage.h b/launcher/ui/pages/global/ProxyPage.h index e3677774..02c7ec40 100644 --- a/launcher/ui/pages/global/ProxyPage.h +++ b/launcher/ui/pages/global/ProxyPage.h @@ -36,6 +36,7 @@ #pragma once #include <memory> +#include <QAbstractButton> #include <QDialog> #include "ui/pages/BasePage.h" @@ -73,15 +74,14 @@ public: bool apply() override; void retranslate() override; +private slots: + void proxyGroupChanged(QAbstractButton *button); + private: void updateCheckboxStuff(); void applySettings(); void loadSettings(); -private -slots: - void proxyChanged(int); - private: Ui::ProxyPage *ui; }; |