Skip to content

Commit 82bd7cd

Browse files
committed
AboutDialog: Updated dependencies
1 parent 40b325d commit 82bd7cd

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

dialogs/aboutdialog/aboutdialog.cpp

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,19 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDia
2121
connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &AboutDialog::accept);
2222
}
2323

24-
AboutDialog::~AboutDialog()
25-
{
26-
delete ui;
27-
}
24+
AboutDialog::~AboutDialog() { delete ui; }
2825

2926
void AboutDialog::initItems()
3027
{
3128
int major = 0, minor = 0;
3229
cs_version(&major, &minor);
3330

34-
m_depends.push_back({ "Qt", QT_VERSION_STR, "https://www.qt.io" });
35-
m_depends.push_back({ "Capstone", QString("%1.%2").arg(major).arg(minor), "https://www.capstone-engine.org" });
36-
m_depends.push_back({ "JSON", "---", "https://github.com/nlohmann/json" });
37-
m_depends.push_back({ "D3", "5.0", "https://d3js.org" });
38-
m_depends.push_back({ "Dagre", "0.7.5", "https://github.com/dagrejs/dagre" });
39-
m_depends.push_back({ "Dagre-D3", "0.3.0", "https://github.com/dagrejs/dagre-d3" });
31+
m_depends.push_back({ "Qt", QT_VERSION_STR, "https://www.qt.io" });
32+
m_depends.push_back({ "Capstone", QString("%1.%2").arg(major).arg(minor), "https://www.capstone-engine.org" });
33+
m_depends.push_back({ "JSON", "---", "https://github.com/nlohmann/json" });
34+
m_depends.push_back({ "UndName", "---", "https://github.com/wine-mirror/wine/blob/master/dlls/msvcrt/undname.c" });
35+
m_depends.push_back({ "Libiberty", "---", "https://github.com/bminor/binutils-gdb/tree/master/libiberty" });
36+
m_depends.push_back({ "Visit-Struct", "---", "https://github.com/cbeck88/visit_struct" });
4037
}
4138

4239
void AboutDialog::initDepends()

0 commit comments

Comments
 (0)