Replace stateChanged/checkStateChanged with toggled

This commit is contained in:
GriffinR
2025-04-10 14:34:04 -04:00
parent 41d0b4261f
commit c6e94eb6ab
16 changed files with 143 additions and 225 deletions

View File

@@ -73,11 +73,11 @@ private:
void onWeatherChanged(const QString &weather);
void onTypeChanged(const QString &type);
void onBattleSceneChanged(const QString &battleScene);
void onRequiresFlashChanged(CheckState selected);
void onShowLocationNameChanged(CheckState selected);
void onAllowRunningChanged(CheckState selected);
void onAllowBikingChanged(CheckState selected);
void onAllowEscapingChanged(CheckState selected);
void onRequiresFlashChanged(bool enabled);
void onShowLocationNameChanged(bool enabled);
void onAllowRunningChanged(bool enabled);
void onAllowBikingChanged(bool enabled);
void onAllowEscapingChanged(bool enabled);
void onFloorNumberChanged(int offset);
};