summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/base/bootloaderinstallhelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/base/bootloaderinstallhelper.cpp')
-rw-r--r--utils/rbutilqt/base/bootloaderinstallhelper.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/rbutilqt/base/bootloaderinstallhelper.cpp b/utils/rbutilqt/base/bootloaderinstallhelper.cpp
index c94ed29140..4a1b24883b 100644
--- a/utils/rbutilqt/base/bootloaderinstallhelper.cpp
+++ b/utils/rbutilqt/base/bootloaderinstallhelper.cpp
@@ -77,6 +77,26 @@ BootloaderInstallBase* BootloaderInstallHelper::createBootloaderInstaller(QObjec
77 } 77 }
78} 78}
79 79
80BootloaderInstallBase::Capabilities
81 BootloaderInstallHelper::bootloaderInstallerCapabilities(QObject *parent, QString type)
82{
83 /* Note - this is a terrible pattern in general, but in this case
84 * it is a much simpler option to just allocate a class instance.
85 * This operation is rarely used, anyway. */
86
87 BootloaderInstallBase* bootloaderInstaller =
88 createBootloaderInstaller(parent, type);
89
90 BootloaderInstallBase::Capabilities caps = BootloaderInstallBase::Capabilities();
91
92 if(bootloaderInstaller) {
93 caps = bootloaderInstaller->capabilities();
94 delete bootloaderInstaller;
95 }
96
97 return caps;
98}
99
80 100
81//! @brief Return post install hints string. 101//! @brief Return post install hints string.
82//! @param model model string 102//! @param model model string