diff --git a/GUI/hostsignaller.h b/GUI/hostsignaller.h index 49358904..6a1a6271 100644 --- a/GUI/hostsignaller.h +++ b/GUI/hostsignaller.h @@ -3,7 +3,7 @@ #include #include -#include "../texthook/host.h" +#include "../host/host.h" // Artikash 7/24/2018: This class is a workaround for the fact that Qt only lets me manipulate the GUI in the main thread. class HostSignaller : public QObject diff --git a/GUI/main.cpp b/GUI/main.cpp index ef0ae071..09a6de95 100644 --- a/GUI/main.cpp +++ b/GUI/main.cpp @@ -1,5 +1,5 @@ #include "mainwindow.h" -#include "../texthook/host.h" +#include "../host/host.h" #include int main(int argc, char *argv[]) diff --git a/GUI/mainwindow.cpp b/GUI/mainwindow.cpp index e2111e23..e333b25c 100644 --- a/GUI/mainwindow.cpp +++ b/GUI/mainwindow.cpp @@ -71,7 +71,7 @@ MainWindow::MainWindow(QWidget *parent) : std::map extensions = LoadExtensions(); for (auto i : extensions) extenCombo->addItem(QString::number(i.first) + ":" + i.second); Host::Open(); - Host::AddConsoleOutput(L"NextHooker beta v2.0.1 by Artikash\r\nSource code and more information available under GPLv3 at https://github.com/Artikash/NextHooker"); + Host::AddConsoleOutput(L"NextHooker beta v2.0.2 by Artikash\r\nSource code and more information available under GPLv3 at https://github.com/Artikash/NextHooker"); } MainWindow::~MainWindow() diff --git a/GUI/mainwindow.h b/GUI/mainwindow.h index 3c653611..5e0ade72 100644 --- a/GUI/mainwindow.h +++ b/GUI/mainwindow.h @@ -6,7 +6,7 @@ #include #include #include -#include "../texthook/host.h" +#include "../host/host.h" #include "hostsignaller.h" namespace Ui diff --git a/GUI/misc.h b/GUI/misc.h index 56e9acc3..998d60de 100644 --- a/GUI/misc.h +++ b/GUI/misc.h @@ -3,7 +3,7 @@ #include #include -#include "../texthook/host.h" +#include "../host/host.h" QString GetFullModuleName(DWORD processId, HMODULE module = NULL); QString GetModuleName(DWORD processId, HMODULE module = NULL);