diff --git a/src/core/lvmdevice.cpp b/src/core/lvmdevice.cpp index 41e126e..0fc2248 100644 --- a/src/core/lvmdevice.cpp +++ b/src/core/lvmdevice.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/core/lvmdevice.h b/src/core/lvmdevice.h index 0f06a58..0698f57 100644 --- a/src/core/lvmdevice.h +++ b/src/core/lvmdevice.h @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/jobs/createvolumegroupjob.cpp b/src/jobs/createvolumegroupjob.cpp index c1b72e3..b2d62df 100644 --- a/src/jobs/createvolumegroupjob.cpp +++ b/src/jobs/createvolumegroupjob.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/jobs/deactivatelogicalvolumejob.cpp b/src/jobs/deactivatelogicalvolumejob.cpp index 7591701..327ad5c 100644 --- a/src/jobs/deactivatelogicalvolumejob.cpp +++ b/src/jobs/deactivatelogicalvolumejob.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/jobs/deactivatevolumegroupjob.cpp b/src/jobs/deactivatevolumegroupjob.cpp index 3439141..ae56ac6 100644 --- a/src/jobs/deactivatevolumegroupjob.cpp +++ b/src/jobs/deactivatevolumegroupjob.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/jobs/movephysicalvolumejob.cpp b/src/jobs/movephysicalvolumejob.cpp index 3e03a14..c961b8d 100644 --- a/src/jobs/movephysicalvolumejob.cpp +++ b/src/jobs/movephysicalvolumejob.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * @@ -62,7 +63,7 @@ QString MovePhysicalVolumeJob::description() const { QString movedPartitions = QString(); for (const auto &p : partList()) - movedPartitions += QStringLiteral(", ") + p->deviceNode(); + movedPartitions += p->deviceNode() + QStringLiteral(", "); movedPartitions.chop(2); return xi18nc("@info/plain", "Move used PE in %1 on %2 to other available Physical Volumes", movedPartitions, device().name()); } diff --git a/src/jobs/resizevolumegroupjob.cpp b/src/jobs/resizevolumegroupjob.cpp index fa7e33d..ae7f37d 100644 --- a/src/jobs/resizevolumegroupjob.cpp +++ b/src/jobs/resizevolumegroupjob.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/ops/createvolumegroupoperation.cpp b/src/ops/createvolumegroupoperation.cpp index 6ed2686..8120b73 100644 --- a/src/ops/createvolumegroupoperation.cpp +++ b/src/ops/createvolumegroupoperation.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/ops/createvolumegroupoperation.h b/src/ops/createvolumegroupoperation.h index d01829f..84afb7e 100644 --- a/src/ops/createvolumegroupoperation.h +++ b/src/ops/createvolumegroupoperation.h @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/ops/resizevolumegroupoperation.cpp b/src/ops/resizevolumegroupoperation.cpp index 0fa0fa1..ae70460 100644 --- a/src/ops/resizevolumegroupoperation.cpp +++ b/src/ops/resizevolumegroupoperation.cpp @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * diff --git a/src/ops/resizevolumegroupoperation.h b/src/ops/resizevolumegroupoperation.h index dc3596f..8c0acf7 100644 --- a/src/ops/resizevolumegroupoperation.h +++ b/src/ops/resizevolumegroupoperation.h @@ -1,5 +1,6 @@ /************************************************************************* * Copyright (C) 2016 by Chantara Tith * + * Copyright (C) 2016 by Andrius Štikonas * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as *