Skip to content

Commit

Permalink
MemoryScanner: Small fix with headers
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinW1998 committed May 22, 2015
1 parent 16d01ac commit a50ee87
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MemoryScanner/MemoryScanner/addnewentrywidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <QDialog>
#include <QVariant>
#include <qtreewidgetitemsmbxaddress.h>
#include "qtreewidgetitemsmbxaddress.h"

namespace Ui {
class AddNewEntryWidget;
Expand Down
2 changes: 1 addition & 1 deletion MemoryScanner/MemoryScanner/addnewsimplestructwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <QMessageBox>

#include <QFileDialog>
#include <parsetools.h>
#include "parsetools.h"


AddNewSimpleStructWidget::AddNewSimpleStructWidget(QTreeWidgetItemSMBXAddress* editToItem, QWidget *parent) :
Expand Down
2 changes: 1 addition & 1 deletion MemoryScanner/MemoryScanner/addnewsimplestructwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define ADDNEWSIMPLESTRUCTWIDGET_H

#include <QDialog>
#include <qtreewidgetitemsmbxaddress.h>
#include "qtreewidgetitemsmbxaddress.h"

namespace Ui {
class AddNewSimpleStructWidget;
Expand Down
2 changes: 1 addition & 1 deletion MemoryScanner/MemoryScanner/parsetools.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef PARSETOOLS_H
#define PARSETOOLS_H

#include <qtreewidgetitemsmbxaddress.h>
#include "qtreewidgetitemsmbxaddress.h"
#include <QList>

class ParseTools
Expand Down
4 changes: 2 additions & 2 deletions MemoryScanner/MemoryScanner/scannerwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include <QInputDialog>
#include <QFileDialog>

#include <addnewentrywidget.h>
#include <addnewsimplestructwidget.h>
#include "addnewentrywidget.h"
#include "addnewsimplestructwidget.h"


ScannerWindow::ScannerWindow(QWidget *parent) :
Expand Down
4 changes: 2 additions & 2 deletions MemoryScanner/MemoryScanner/scannerwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#include <QMainWindow>

#include <QtCore>
#include <win32Helper.h>
#include "win32Helper.h"
#include <QJsonDocument>
#include <qtreewidgetitemsmbxaddress.h>
#include "qtreewidgetitemsmbxaddress.h"

namespace Ui {
class ScannerWindow;
Expand Down

0 comments on commit a50ee87

Please sign in to comment.