comparison widgets/PluginReviewDialog.cpp @ 1294:9f9a7edd7d89 plugin-path-config

Show value of environment variable; populate for last plugin type by default (as that happens to be Vamp)
author Chris Cannam
date Mon, 04 Jun 2018 15:44:57 +0100
parents 6dd15b5c14f9
children d39db4673676
comparison
equal deleted inserted replaced
1293:6dd15b5c14f9 1294:9f9a7edd7d89
34 setLayout(layout); 34 setLayout(layout);
35 35
36 m_table = new QTableWidget; 36 m_table = new QTableWidget;
37 layout->addWidget(m_table, 0, 1); 37 layout->addWidget(m_table, 0, 1);
38 38
39 QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Ok); 39 QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Close);
40 layout->addWidget(bb, 1, 1); 40 layout->addWidget(bb, 1, 1);
41 connect(bb, SIGNAL(accepted()), this, SLOT(accept())); 41 connect(bb, SIGNAL(rejected()), this, SLOT(close()));
42 } 42 }
43 43
44 PluginReviewDialog::~PluginReviewDialog() 44 PluginReviewDialog::~PluginReviewDialog()
45 { 45 {
46 } 46 }