Rename file according to class name

This commit is contained in:
ballessay 2017-05-13 18:46:30 +02:00 committed by C. Balles
parent a562d5b0b6
commit 23c92ac77c
4 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,6 @@ SOURCES += \
qrcore.cpp \ qrcore.cpp \
createnewdialog.cpp \ createnewdialog.cpp \
hexascii_highlighter.cpp \ hexascii_highlighter.cpp \
webserverthread.cpp \
widgets/pieview.cpp \ widgets/pieview.cpp \
widgets/sectionswidget.cpp \ widgets/sectionswidget.cpp \
widgets/codegraphic.cpp \ widgets/codegraphic.cpp \
@ -62,7 +61,8 @@ SOURCES += \
dialogs/xrefsdialog.cpp \ dialogs/xrefsdialog.cpp \
hexhighlighter.cpp \ hexhighlighter.cpp \
widgets/sectionsdock.cpp \ widgets/sectionsdock.cpp \
widgets/consolewidget.cpp widgets/consolewidget.cpp \
radarewebserver.cpp
HEADERS += \ HEADERS += \
mainwindow.h \ mainwindow.h \
@ -72,7 +72,6 @@ HEADERS += \
qrcore.h \ qrcore.h \
createnewdialog.h \ createnewdialog.h \
hexascii_highlighter.h \ hexascii_highlighter.h \
webserverthread.h \
widgets/pieview.h \ widgets/pieview.h \
widgets/sectionswidget.h \ widgets/sectionswidget.h \
widgets/codegraphic.h \ widgets/codegraphic.h \
@ -100,7 +99,8 @@ HEADERS += \
hexhighlighter.h \ hexhighlighter.h \
widgets/sectionsdock.h \ widgets/sectionsdock.h \
widgets/dockwidget.h \ widgets/dockwidget.h \
widgets/consolewidget.h widgets/consolewidget.h \
radarewebserver.h
FORMS += \ FORMS += \
mainwindow.ui \ mainwindow.ui \

View File

@ -1,7 +1,7 @@
#ifndef MAINWINDOW_H #ifndef MAINWINDOW_H
#define MAINWINDOW_H #define MAINWINDOW_H
#include "webserverthread.h" #include "radarewebserver.h"
#include "qrcore.h" // only needed for ut64 #include "qrcore.h" // only needed for ut64
#include <QMainWindow> #include <QMainWindow>

View File

@ -1,4 +1,4 @@
#include "webserverthread.h" #include "radarewebserver.h"
#include "qrcore.h" #include "qrcore.h"
#include <cassert> #include <cassert>