diff options
| author | Victor Tran <vicr12345@gmail.com> | 2020-08-03 23:33:12 +1000 |
|---|---|---|
| committer | Victor Tran <vicr12345@gmail.com> | 2020-08-03 23:33:12 +1000 |
| commit | 52e80e6d4405e16378471003dd8b30aa920c1f9c (patch) | |
| tree | b3b4439f6a1f4d23398a61a78d9678f39afeef3e /installer/mainwindow.cpp | |
| parent | 2917d1830456828461171f3b9e1bffd37eba0b97 (diff) | |
| parent | fef992a12c81ad728b44617e02c3f5180c4a3cc0 (diff) | |
| download | theInstaller-continuous.tar.gz theInstaller-continuous.tar.bz2 theInstaller-continuous.zip | |
Merge branch 'refs/heads/master' into blueprintcontinuousblueprint
Diffstat (limited to 'installer/mainwindow.cpp')
| -rw-r--r-- | installer/mainwindow.cpp | 4 |
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("\\"); |
