diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-02-10 21:24:06 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-02-10 21:24:06 -0500 |
| commit | 1a92e988d63753d2904ac775c4b30589e76c7e5c (patch) | |
| tree | 0a446ad31a46eefa580d1741190bf653fe9a3f56 /about.h | |
| parent | f9ab17d41c3c403eba221f7bc176d01efebe8d03 (diff) | |
| download | AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.tar.gz AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.tar.bz2 AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.zip | |
Added about dialog, address bar works
Diffstat (limited to 'about.h')
| -rw-r--r-- | about.h | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +#ifndef ABOUT_H +#define ABOUT_H + +#include <QDialog> + +namespace Ui { +class About; +} + +class About : public QDialog +{ + Q_OBJECT + +public: + explicit About(QWidget *parent = nullptr); + ~About(); + +private: + Ui::About *ui; +}; + +#endif // ABOUT_H |
