aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/InstanceWindow.cpp
diff options
context:
space:
mode:
authorTheKodeToad <TheKodeToad@proton.me>2023-06-22 13:11:55 +0100
committerTheKodeToad <TheKodeToad@proton.me>2023-06-22 13:13:25 +0100
commitdea33a3c1d3936cc5cfdd0917673af84e94d70de (patch)
treeef27402e45601d8cd0dfef8b6d8d771cb6189958 /launcher/ui/InstanceWindow.cpp
parent1f16380efce61fa028d6c25308c8cac7925da72a (diff)
downloadPrismLauncher-dea33a3c1d3936cc5cfdd0917673af84e94d70de.tar.gz
PrismLauncher-dea33a3c1d3936cc5cfdd0917673af84e94d70de.tar.bz2
PrismLauncher-dea33a3c1d3936cc5cfdd0917673af84e94d70de.zip
Make `selectedPage` const 🤦‍♀️
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/ui/InstanceWindow.cpp')
-rw-r--r--launcher/ui/InstanceWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/InstanceWindow.cpp b/launcher/ui/InstanceWindow.cpp
index 30a215e3..d784a40f 100644
--- a/launcher/ui/InstanceWindow.cpp
+++ b/launcher/ui/InstanceWindow.cpp
@@ -264,7 +264,7 @@ bool InstanceWindow::selectPage(QString pageId)
return m_container->selectPage(pageId);
}
-BasePage* InstanceWindow::selectedPage()
+BasePage* InstanceWindow::selectedPage() const
{
return m_container->selectedPage();
}