Skip to content

Commit

Permalink
bug fix and version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Artikash committed Aug 3, 2018
1 parent 60fb171 commit 5edfb4d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GUI/hostsignaller.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <QObject>
#include <Windows.h>
#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
Expand Down
2 changes: 1 addition & 1 deletion GUI/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "mainwindow.h"
#include "../texthook/host.h"
#include "../host/host.h"
#include <QApplication>

int main(int argc, char *argv[])
Expand Down
2 changes: 1 addition & 1 deletion GUI/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ MainWindow::MainWindow(QWidget *parent) :
std::map<int, QString> 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()
Expand Down
2 changes: 1 addition & 1 deletion GUI/mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <QVector>
#include <unordered_map>
#include <string>
#include "../texthook/host.h"
#include "../host/host.h"
#include "hostsignaller.h"

namespace Ui
Expand Down
2 changes: 1 addition & 1 deletion GUI/misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <QString>
#include <Windows.h>
#include "../texthook/host.h"
#include "../host/host.h"

QString GetFullModuleName(DWORD processId, HMODULE module = NULL);
QString GetModuleName(DWORD processId, HMODULE module = NULL);
Expand Down

0 comments on commit 5edfb4d

Please sign in to comment.