mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-17 04:27:45 -07:00
Rename all count to tally in the feature
This commit is contained in:
parent
11bd4f5640
commit
9c0180c183
6 changed files with 49 additions and 49 deletions
|
|
@ -347,9 +347,9 @@ private:
|
|||
bool isPortableBuild;
|
||||
bool roundCardCorners;
|
||||
bool showStatusBar;
|
||||
bool showDragSelectionCount;
|
||||
bool showTotalSelectionCount;
|
||||
bool showSubtypeSelectionCount;
|
||||
bool showDragSelectionTally;
|
||||
bool showTotalSelectionTally;
|
||||
bool showSubtypeSelectionTally;
|
||||
|
||||
public:
|
||||
SettingsCache();
|
||||
|
|
@ -465,17 +465,17 @@ public:
|
|||
{
|
||||
return showStatusBar;
|
||||
}
|
||||
[[nodiscard]] bool getShowDragSelectionCount() const
|
||||
[[nodiscard]] bool getShowDragSelectionTally() const
|
||||
{
|
||||
return showDragSelectionCount;
|
||||
return showDragSelectionTally;
|
||||
}
|
||||
[[nodiscard]] bool getShowTotalSelectionCount() const
|
||||
[[nodiscard]] bool getShowTotalSelectionTally() const
|
||||
{
|
||||
return showTotalSelectionCount;
|
||||
return showTotalSelectionTally;
|
||||
}
|
||||
[[nodiscard]] bool getShowSubtypeSelectionCount() const
|
||||
[[nodiscard]] bool getShowSubtypeSelectionTally() const
|
||||
{
|
||||
return showSubtypeSelectionCount;
|
||||
return showSubtypeSelectionTally;
|
||||
}
|
||||
[[nodiscard]] bool getNotificationsEnabled() const
|
||||
{
|
||||
|
|
@ -1158,8 +1158,8 @@ public slots:
|
|||
void setUpdateReleaseChannelIndex(int value);
|
||||
void setMaxFontSize(int _max);
|
||||
void setRoundCardCorners(bool _roundCardCorners);
|
||||
void setShowDragSelectionCount(QT_STATE_CHANGED_T _showDragSelectionCount);
|
||||
void setShowTotalSelectionCount(QT_STATE_CHANGED_T _showTotalSelectionCount);
|
||||
void setShowSubtypeSelectionCount(QT_STATE_CHANGED_T _showSubtypeSelectionCount);
|
||||
void setShowDragSelectionTally(QT_STATE_CHANGED_T _showDragSelectionTally);
|
||||
void setShowTotalSelectionTally(QT_STATE_CHANGED_T _showTotalSelectionTally);
|
||||
void setShowSubtypeSelectionTally(QT_STATE_CHANGED_T _showSubtypeSelectionTally);
|
||||
};
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue