1
0
Fork 0
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:
bsongis 2015-07-08 18:54:09 +02:00
parent 46d7fb3ff6
commit df7f715dd3
13 changed files with 841 additions and 729 deletions

View 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