Fix resize volume group job description.

This commit is contained in:
Andrius Štikonas 2016-11-03 22:15:43 +00:00
parent 58cec6040f
commit 6717ea913d
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ QString ResizeVolumeGroupJob::description() const
{
QString partitionList = QString();
for (const auto &p : partList()) {
partitionList += QStringLiteral(", ") + p->deviceNode();
partitionList += p->deviceNode() + QStringLiteral(", ");
}
partitionList.chop(2);
const qint32 count = partList().count();