Rework boot loader combo box

List MBR of all devices
Does not loose its selection when updated
This commit is contained in:
Aurélien Gâteau 2014-07-23 18:14:27 +02:00
parent c9c1917997
commit ab4604258c
8 changed files with 188 additions and 46 deletions

View file

@ -18,6 +18,10 @@
#ifndef PMUTILS_H
#define PMUTILS_H
// Qt
#include <QList>
class Device;
class Partition;
namespace PMUtils
@ -27,6 +31,8 @@ bool isPartitionFreeSpace( Partition* );
bool isPartitionNew( Partition* );
Partition* findPartitionByMountPoint( const QList< Device* >& devices, const QString& mountPoint );
}
#endif /* PMUTILS_H */