diff options
author | RedsonBr140 <redson@riseup.net> | 2022-11-17 06:20:53 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 06:20:53 -0300 |
commit | bd3a693e700bc0b1ea9bbc72631ccd13ba755277 (patch) | |
tree | 5c388b6dd1bfcb6a95b57527673800aa932d1bc2 | |
parent | 37a117d2effc21b23b86ada80951bfd23671a64b (diff) | |
download | PrismLauncher-bd3a693e700bc0b1ea9bbc72631ccd13ba755277.tar.gz PrismLauncher-bd3a693e700bc0b1ea9bbc72631ccd13ba755277.tar.bz2 PrismLauncher-bd3a693e700bc0b1ea9bbc72631ccd13ba755277.zip |
chore: Change var name
Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net>
Signed-off-by: RedsonBr140 <redson@riseup.net>
-rw-r--r-- | launcher/ui/MainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index 1f8444af..dcf1be99 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -1313,7 +1313,7 @@ void MainWindow::updateThemeMenu() auto themes = APPLICATION->getValidApplicationThemes(); - QActionGroup* ThemesGroup = new QActionGroup( this ); + QActionGroup* themesGroup = new QActionGroup( this ); for (auto* theme : themes) { QAction * themeAction = themeMenu->addAction(theme->name()); |