From 3e067e617e9fed5e86a39aa87f861114da61f124 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 28 Feb 2019 10:26:17 -0500 Subject: [PATCH] [partition] Add accessor and documentation to BootLoaderInstallPath --- src/modules/partition/core/PartitionCoreModule.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/partition/core/PartitionCoreModule.h b/src/modules/partition/core/PartitionCoreModule.h index c48c1562c..743f9c178 100644 --- a/src/modules/partition/core/PartitionCoreModule.h +++ b/src/modules/partition/core/PartitionCoreModule.h @@ -154,6 +154,9 @@ public: void setPartitionFlags( Device* device, Partition* partition, PartitionTable::Flags flags ); + /// @brief Retrieve the path where the bootloader will be installed + QString bootLoaderInstallPath() const { return m_bootLoaderInstallPath; } + /// @brief Set the path where the bootloader will be installed void setBootLoaderInstallPath( const QString& path ); void initLayout();