aboutsummaryrefslogtreecommitdiff
path: root/installer/mainwindow.cpp
diff options
context:
space:
mode:
authorVictor Tran <vicr12345@gmail.com>2020-08-03 23:33:12 +1000
committerVictor Tran <vicr12345@gmail.com>2020-08-03 23:33:12 +1000
commit52e80e6d4405e16378471003dd8b30aa920c1f9c (patch)
treeb3b4439f6a1f4d23398a61a78d9678f39afeef3e /installer/mainwindow.cpp
parent2917d1830456828461171f3b9e1bffd37eba0b97 (diff)
parentfef992a12c81ad728b44617e02c3f5180c4a3cc0 (diff)
downloadtheInstaller-52e80e6d4405e16378471003dd8b30aa920c1f9c.tar.gz
theInstaller-52e80e6d4405e16378471003dd8b30aa920c1f9c.tar.bz2
theInstaller-52e80e6d4405e16378471003dd8b30aa920c1f9c.zip
Merge branch 'refs/heads/master' into blueprintcontinuousblueprint
Diffstat (limited to 'installer/mainwindow.cpp')
-rw-r--r--installer/mainwindow.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/installer/mainwindow.cpp b/installer/mainwindow.cpp
index 8acd8eb..c98c4fc 100644
--- a/installer/mainwindow.cpp
+++ b/installer/mainwindow.cpp
@@ -330,6 +330,10 @@ void MainWindow::on_installButton_clicked()
args.append("\"--vendor " + metadata.value("vendor").toString() + "\"");
args.append("\"--name " + metadata.value("name").toString() + "\"");
+ if (metadata.contains("clsid")) {
+ args.append("\"--clsid " + metadata.value("clsid").toString() + "\"");
+ }
+
QString destdir = ui->installPathLineEdit->text();
if (destdir.endsWith("\\")) {
destdir.append("\\");