mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-31 15:28:21 -04:00
Implement local offsets
This commit is contained in:
parent
be2cdc7dfe
commit
afce02430a
16 changed files with 280 additions and 269 deletions
23
UEFITool/gotobasedialog.h
Normal file
23
UEFITool/gotobasedialog.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef GOTOBASEDIALOG_H
|
||||
#define GOTOBASEDIALOG_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDialog>
|
||||
#include "ui_gotobasedialog.h"
|
||||
class GoToBaseDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
GoToBaseDialog(QWidget* parent = NULL):
|
||||
QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint),
|
||||
ui(new Ui::GoToBaseDialog) {
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
~GoToBaseDialog() {delete ui;}
|
||||
|
||||
Ui::GoToBaseDialog* ui;
|
||||
};
|
||||
|
||||
#endif // GOTOBASEDIALOG_H
|
Loading…
Add table
Add a link
Reference in a new issue