mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 16:55:20 +03:00
Contributors / Release notes dialogs refactoring
This commit is contained in:
parent
46d7fb3ff6
commit
df7f715dd3
13 changed files with 841 additions and 729 deletions
23
companion/src/releasenotesdialog.h
Executable file
23
companion/src/releasenotesdialog.h
Executable file
|
@ -0,0 +1,23 @@
|
|||
#ifndef RELEASENOTESDIALOG_H
|
||||
#define RELEASENOTESDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "helpers.h"
|
||||
|
||||
namespace Ui {
|
||||
class HtmlDialog;
|
||||
}
|
||||
|
||||
class ReleaseNotesDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ReleaseNotesDialog(QWidget *parent = 0);
|
||||
~ReleaseNotesDialog();
|
||||
|
||||
private:
|
||||
Ui::HtmlDialog * ui;
|
||||
};
|
||||
|
||||
#endif // RELEASENOTESDIALOG_H
|
Loading…
Add table
Add a link
Reference in a new issue