1
0
Fork 0

Clean up aboutdialog.h

This commit is contained in:
fearlessTobi 2018-08-25 14:45:50 +02:00
parent 1f0cbf43d6
commit 4bf76833b8
1 changed files with 3 additions and 5 deletions

View File

@ -2,9 +2,9 @@
// Licensed under GPLv2 or any later version // Licensed under GPLv2 or any later version
// Refer to the license.txt file included. // Refer to the license.txt file included.
#ifndef ABOUTDIALOG_H #pragma once
#define ABOUTDIALOG_H
#include <memory>
#include <QDialog> #include <QDialog>
namespace Ui { namespace Ui {
@ -19,7 +19,5 @@ public:
~AboutDialog() override; ~AboutDialog() override;
private: private:
Ui::AboutDialog* ui; std::unique_ptr<Ui::AboutDialog> ui;
}; };
#endif // ABOUTDIALOG_H