[partition] Use KPM manager in partitioning jobs

- This gives all the partition-changing jobs an easy way to
   manage the lifetime of the privileged helper.
This commit is contained in:
Adriaan de Groot 2019-06-14 22:48:00 +02:00
parent ed999a247a
commit 4df9bd8917

View File

@ -1,6 +1,7 @@
/* === This file is part of Calamares - <https://github.com/calamares> === /* === This file is part of Calamares - <https://github.com/calamares> ===
* *
* Copyright 2014, Aurélien Gâteau <agateau@kde.org> * Copyright 2014, Aurélien Gâteau <agateau@kde.org>
* Copyright 2019, Adriaan de Groot <groot@kde.org>
* *
* Calamares is free software: you can redistribute it and/or modify * Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -19,12 +20,13 @@
#ifndef PARTITIONJOB_H #ifndef PARTITIONJOB_H
#define PARTITIONJOB_H #define PARTITIONJOB_H
#include <Job.h> #include "Job.h"
#include "partition/KPMManager.h"
class Partition; class Partition;
/** /**
* Base class for jobs which affect a partition. * Base class for jobs which affect a partition and which use KPMCore.
*/ */
class PartitionJob : public Calamares::Job class PartitionJob : public Calamares::Job
{ {
@ -46,6 +48,7 @@ public slots:
void iprogress( int percent ); void iprogress( int percent );
protected: protected:
CalamaresUtils::Partition::KPMManager m_kpmcore;
Partition* m_partition; Partition* m_partition;
}; };