diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-08-02 20:24:15 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-08-02 20:24:15 +0100 |
commit | 8b3c465a50e6be2a09c3968f1fd1e91b0428cbb0 (patch) | |
tree | 6b70ebbaec3b613ac18add29d58fc73205a55cf2 | |
parent | 40c614b3a579dd7435f917cf60289712190a379b (diff) | |
download | PrismLauncher-8b3c465a50e6be2a09c3968f1fd1e91b0428cbb0.tar.gz PrismLauncher-8b3c465a50e6be2a09c3968f1fd1e91b0428cbb0.tar.bz2 PrismLauncher-8b3c465a50e6be2a09c3968f1fd1e91b0428cbb0.zip |
Use protected inheritance for BasePageProvider
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
-rw-r--r-- | launcher/ui/dialogs/InstallLoaderDialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/InstallLoaderDialog.h b/launcher/ui/dialogs/InstallLoaderDialog.h index cdcba2b9..86cb3bdd 100644 --- a/launcher/ui/dialogs/InstallLoaderDialog.h +++ b/launcher/ui/dialogs/InstallLoaderDialog.h @@ -26,7 +26,7 @@ class PageContainer; class PackProfile; class QDialogButtonBox; -class InstallLoaderDialog final : public QDialog, public BasePageProvider { +class InstallLoaderDialog final : public QDialog, protected BasePageProvider { Q_OBJECT public: |