diff options
author | Kloen <kloen@outlawkiwi.com> | 2017-01-22 18:46:48 +0100 |
---|---|---|
committer | Kloen <kloen@outlawkiwi.com> | 2017-01-22 18:46:48 +0100 |
commit | abc5c134a3285aa0fbc653e9a4b9d4a9ea111e50 (patch) | |
tree | 18cc6dce3434ecf7e363a52590bd9484394898b0 /src | |
parent | 380c165339f9c7783cd2b2fe7916692cfb5c2b3f (diff) |
Removed unused and outdated external qhexedit
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/citra_qt/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index 6998097e1..d4460bf01 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -98,7 +98,7 @@ if (APPLE) else() add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS}) endif() -target_link_libraries(citra-qt core video_core audio_core common qhexedit) +target_link_libraries(citra-qt core video_core audio_core common) target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS}) target_link_libraries(citra-qt ${PLATFORM_LIBRARIES} Threads::Threads) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index a3515f936..f765c0147 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -12,6 +12,7 @@ #include <QFileDialog> #include <QMessageBox> #include <QtGui> +#include <QtWidgets> #include "citra_qt/bootmanager.h" #include "citra_qt/config.h" #include "citra_qt/configure_dialog.h" @@ -45,7 +46,6 @@ #include "core/gdbstub/gdbstub.h" #include "core/loader/loader.h" #include "core/settings.h" -#include "qhexedit.h" #include "video_core/video_core.h" #ifdef QT_STATICPLUGIN |