mirror of https://github.com/AxioDL/metaforce.git
CVarDialog: Move memory include to header
This commit is contained in:
parent
8c08c1ac3a
commit
af7f4601ac
|
@ -1,6 +1,5 @@
|
|||
#include "CVarDialog.hpp"
|
||||
#include "ui_CVarDialog.h"
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
enum class CVarType {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#ifndef CVARDIALOG_H
|
||||
#define CVARDIALOG_H
|
||||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
#include <QStringListModel>
|
||||
#include <QAbstractButton>
|
||||
#include <QDialog>
|
||||
#include <QItemSelection>
|
||||
#include <QStringListModel>
|
||||
#include <memory>
|
||||
|
||||
namespace Ui {
|
||||
class CVarDialog;
|
||||
|
@ -28,5 +28,3 @@ private slots:
|
|||
void on_buttonBox_rejected();
|
||||
void handleSelectionChanged(const QItemSelection& selection);
|
||||
};
|
||||
|
||||
#endif // CVARDIALOG_H
|
||||
|
|
Loading…
Reference in New Issue