mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
kdecore: fix strings concat for options with default value
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
f5cd0b529d
commit
87bd0ff48e
1 changed files with 1 additions and 1 deletions
|
@ -1256,7 +1256,7 @@ KCmdLineArgs::usage(const QByteArray &id)
|
|||
else
|
||||
{
|
||||
s->printQ(optionFormatStringDef.arg(QString::fromLatin1(opt), -25)
|
||||
.arg(description, option.d->defaults[i]));
|
||||
.arg(description).arg(option.d->defaults[i]));
|
||||
}
|
||||
opt.clear();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue