Use nullptr consistencty instead of 0 and NULL (Qt client)

This commit is contained in:
Mike Gelfand
2017-04-30 12:29:58 +03:00
parent 7bfd7f5863
commit 6da99c05e2
26 changed files with 86 additions and 86 deletions

View File

@@ -69,5 +69,5 @@ void StatsDialog::updateStats()
ui.totalRatioValueLabel->setText(Formatter::ratioToString(total.ratio));
ui.totalDurationValueLabel->setText(Formatter::timeToString(total.secondsActive));
ui.startCountLabel->setText(tr("Started %Ln time(s)", 0, total.sessionCount));
ui.startCountLabel->setText(tr("Started %Ln time(s)", nullptr, total.sessionCount));
}