2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-17 02:33:28 +00:00

CVarDialog: Move memory include to header

This commit is contained in:
Luke Street 2021-02-27 23:22:57 -05:00
parent 8c08c1ac3a
commit af7f4601ac
2 changed files with 4 additions and 7 deletions

View File

@ -1,6 +1,5 @@
#include "CVarDialog.hpp" #include "CVarDialog.hpp"
#include "ui_CVarDialog.h" #include "ui_CVarDialog.h"
#include <memory>
#include <utility> #include <utility>
enum class CVarType { enum class CVarType {

View File

@ -1,10 +1,10 @@
#ifndef CVARDIALOG_H #pragma once
#define CVARDIALOG_H
#include <QDialog>
#include <QStringListModel>
#include <QAbstractButton> #include <QAbstractButton>
#include <QDialog>
#include <QItemSelection> #include <QItemSelection>
#include <QStringListModel>
#include <memory>
namespace Ui { namespace Ui {
class CVarDialog; class CVarDialog;
@ -28,5 +28,3 @@ private slots:
void on_buttonBox_rejected(); void on_buttonBox_rejected();
void handleSelectionChanged(const QItemSelection& selection); void handleSelectionChanged(const QItemSelection& selection);
}; };
#endif // CVARDIALOG_H