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

@@ -158,10 +158,10 @@ QString Formatter::timeToString(int seconds)
minutes = (seconds % 3600) / 60;
seconds %= 60;
d = tr("%Ln day(s)", 0, days);
h = tr("%Ln hour(s)", 0, hours);
m = tr("%Ln minute(s)", 0, minutes);
s = tr("%Ln second(s)", 0, seconds);
d = tr("%Ln day(s)", nullptr, days);
h = tr("%Ln hour(s)", nullptr, hours);
m = tr("%Ln minute(s)", nullptr, minutes);
s = tr("%Ln second(s)", nullptr, seconds);
if (days)
{