diff --git a/cockatrice/src/game_graphics/player/menu/tally_menu.cpp b/cockatrice/src/game_graphics/player/menu/tally_menu.cpp index a507f4b2f..4517e75ec 100644 --- a/cockatrice/src/game_graphics/player/menu/tally_menu.cpp +++ b/cockatrice/src/game_graphics/player/menu/tally_menu.cpp @@ -5,11 +5,11 @@ TallyMenu::TallyMenu() { aTallyNone = createTallyAction(TallyType::None); - aTallySubtype = createTallyAction(TallyType::Subtypes); + aTallySubtypes = createTallyAction(TallyType::Subtypes); addAction(aTallyNone); addSeparator(); - addAction(aTallySubtype); + addAction(aTallySubtypes); retranslateUi(); } @@ -45,5 +45,5 @@ void TallyMenu::retranslateUi() setTitle(tr("Tally")); aTallyNone->setText(tr("None")); - aTallySubtype->setText(tr("Subtype")); + aTallySubtypes->setText(tr("Subtypes")); } diff --git a/cockatrice/src/game_graphics/player/menu/tally_menu.h b/cockatrice/src/game_graphics/player/menu/tally_menu.h index 4bfd42fcc..a079f0fdf 100644 --- a/cockatrice/src/game_graphics/player/menu/tally_menu.h +++ b/cockatrice/src/game_graphics/player/menu/tally_menu.h @@ -20,7 +20,7 @@ public: private: QAction *aTallyNone = nullptr; - QAction *aTallySubtype = nullptr; + QAction *aTallySubtypes = nullptr; QAction *createTallyAction(TallyType tallyType); };