Skip to content

Commit

Permalink
fix misleading parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Mar 18, 2024
1 parent a1bcfc7 commit 5a75025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1274,9 +1274,9 @@ int ShotcutSettings::backupPeriod() const
return settings.value("backupPeriod", 24 * 60).toInt();
}

void ShotcutSettings::setBackupPeriod(int seconds)
void ShotcutSettings::setBackupPeriod(int minutes)
{
settings.setValue("backupPeriod", seconds);
settings.setValue("backupPeriod", minutes);
}

mlt_time_format ShotcutSettings::timeFormat() const
Expand Down

0 comments on commit 5a75025

Please sign in to comment.