diff options
author | flow <thiagodonato300@gmail.com> | 2022-03-18 07:54:47 -0300 |
---|---|---|
committer | flow <thiagodonato300@gmail.com> | 2022-03-18 07:54:47 -0300 |
commit | da43ed8ce1d804fe20c44788577a0387a698ed6e (patch) | |
tree | c7dc3d757dd1914ad55ee5e403d6be432a7e5729 /launcher/ui/dialogs/ReviewMessageBox.h | |
parent | 8409aa2571d57f015a634a220107d199e88ba2fd (diff) | |
parent | acdb54b88e0fbdcb46aba3ed3d90e8b7fed08357 (diff) | |
download | PrismLauncher-da43ed8ce1d804fe20c44788577a0387a698ed6e.tar.gz PrismLauncher-da43ed8ce1d804fe20c44788577a0387a698ed6e.tar.bz2 PrismLauncher-da43ed8ce1d804fe20c44788577a0387a698ed6e.zip |
fix silly mistakes and merge upstream
Diffstat (limited to 'launcher/ui/dialogs/ReviewMessageBox.h')
-rw-r--r-- | launcher/ui/dialogs/ReviewMessageBox.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/launcher/ui/dialogs/ReviewMessageBox.h b/launcher/ui/dialogs/ReviewMessageBox.h new file mode 100644 index 00000000..48742cd9 --- /dev/null +++ b/launcher/ui/dialogs/ReviewMessageBox.h @@ -0,0 +1,23 @@ +#pragma once + +#include <QDialog> + +namespace Ui { +class ReviewMessageBox; +} + +class ReviewMessageBox final : public QDialog { + Q_OBJECT + + public: + static auto create(QWidget* parent, QString&& title, QString&& icon = "") -> ReviewMessageBox*; + + void appendMod(const QString& name, const QString& filename); + + ~ReviewMessageBox(); + + private: + ReviewMessageBox(QWidget* parent, const QString& title, const QString& icon); + + Ui::ReviewMessageBox* ui; +}; |