diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-12 11:17:11 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-12 11:17:11 +0200 |
commit | 35358f8180468af1572c35425b1f60c899d6b07d (patch) | |
tree | f51678d129432b0a68d22de0178ccb8fd4f9a927 /launcher/ui/InstanceWindow.cpp | |
parent | ea43d0f687391db08459ea43794ee97b93e654fa (diff) | |
parent | 44153a28e369943ea16545146fec81f7a62e44dd (diff) | |
download | PrismLauncher-35358f8180468af1572c35425b1f60c899d6b07d.tar.gz PrismLauncher-35358f8180468af1572c35425b1f60c899d6b07d.tar.bz2 PrismLauncher-35358f8180468af1572c35425b1f60c899d6b07d.zip |
Merge remote-tracking branch 'upstream/staging' into chore/add-compiler-warnings
Diffstat (limited to 'launcher/ui/InstanceWindow.cpp')
-rw-r--r-- | launcher/ui/InstanceWindow.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/launcher/ui/InstanceWindow.cpp b/launcher/ui/InstanceWindow.cpp index c62b370f..d784a40f 100644 --- a/launcher/ui/InstanceWindow.cpp +++ b/launcher/ui/InstanceWindow.cpp @@ -1,7 +1,8 @@ // SPDX-License-Identifier: GPL-3.0-only /* - * PolyMC - Minecraft Launcher + * Prism Launcher - Minecraft Launcher * Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net> + * Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -263,6 +264,11 @@ bool InstanceWindow::selectPage(QString pageId) return m_container->selectPage(pageId); } +BasePage* InstanceWindow::selectedPage() const +{ + return m_container->selectedPage(); +} + void InstanceWindow::refreshContainer() { m_container->refreshContainer(); |