mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Remove unneccesary QString operator=
This commit is contained in:
parent
f63d9d3e33
commit
4ea1ed085f
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ QString makeDuration(int count, const QString &order)
|
|||
|
||||
QString makeDuration(int timeoutSeconds)
|
||||
{
|
||||
QString res = "";
|
||||
QString res;
|
||||
|
||||
int seconds = timeoutSeconds % 60;
|
||||
int timeoutMinutes = timeoutSeconds / 60;
|
||||
|
|
Loading…
Reference in a new issue