diff options
| author | Victor Tran <vicr12345@gmail.com> | 2020-08-03 23:25:55 +1000 |
|---|---|---|
| committer | Victor Tran <vicr12345@gmail.com> | 2020-08-03 23:25:55 +1000 |
| commit | fef992a12c81ad728b44617e02c3f5180c4a3cc0 (patch) | |
| tree | 3b0e5f218934ebde9d13306c881260a98bf17e1c /installer/mainwindow.cpp | |
| parent | d0bc49f9d606580053ac45058c9c9ccb4c6b26c1 (diff) | |
| download | theInstaller-fef992a12c81ad728b44617e02c3f5180c4a3cc0.tar.gz theInstaller-fef992a12c81ad728b44617e02c3f5180c4a3cc0.tar.bz2 theInstaller-fef992a12c81ad728b44617e02c3f5180c4a3cc0.zip | |
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("\\"); |
