diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2014-05-02 00:32:41 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2014-05-11 19:54:48 +0200 |
| commit | dc869e70acaadb7ef2d96101fe8e938d53f18e65 (patch) | |
| tree | f3a3b73c239d3e3baee26e48a0183fd767f23cbd /utils/regtools/qeditor/mainwindow.cpp | |
| parent | 8d0d3cb6f5528811fabde7e08c876723febe0a0d (diff) | |
| download | rockbox-dc869e70acaadb7ef2d96101fe8e938d53f18e65.zip rockbox-dc869e70acaadb7ef2d96101fe8e938d53f18e65.tar.gz rockbox-dc869e70acaadb7ef2d96101fe8e938d53f18e65.tar.bz2 rockbox-dc869e70acaadb7ef2d96101fe8e938d53f18e65.tar.xz | |
qeditor: add support for deletion of items
Change-Id: I886e15585bd3bfed3303e4b845cd8960a9461277
Diffstat (limited to 'utils/regtools/qeditor/mainwindow.cpp')
| -rw-r--r-- | utils/regtools/qeditor/mainwindow.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/utils/regtools/qeditor/mainwindow.cpp b/utils/regtools/qeditor/mainwindow.cpp index cd09268..1a88ebb 100644 --- a/utils/regtools/qeditor/mainwindow.cpp +++ b/utils/regtools/qeditor/mainwindow.cpp @@ -97,7 +97,18 @@ void MainWindow::OnQuit() void MainWindow::OnAbout() { - QMessageBox::about(this, "About", "Written by Amaury Pouly for Rockbox"); + QMessageBox::about(this, "About", + "<h1>QEditor</h1>" + "<h2>Version "APP_VERSION"</h2>" + "<p>Written by Amaury Pouly</p>" + "<p>Libraries:</p>" + "<ul><li>soc_desc: "SOCDESC_VERSION"</li>" +#ifdef HAVE_HWSTUB + "<li>hwstub: "HWSTUB_VERSION"</li>" +#else + "<li>hwstub: not compiled in</li>" +#endif + "</ul>"); } void MainWindow::OnAboutQt() |