Skip to content

Commit

Permalink
new app icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ambiennt committed Oct 23, 2022
1 parent e92cbde commit 24001b1
Show file tree
Hide file tree
Showing 8 changed files with 2,116 additions and 52 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

cmake_minimum_required(VERSION 3.20)
project(mcbeDllInjector VERSION 1.2.0)
project(mcbeDllInjector VERSION 1.1.0)

set(CMAKE_CXX_STANDARD 20)

Expand Down
2 changes: 1 addition & 1 deletion src/cApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ bool cApp::OnInit() {
}

CMAIN_INSTANCE->Show();
return true;
return true;
}
4 changes: 2 additions & 2 deletions src/cApp.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once

#include "config.h"
#include "cMain.h"
#include <memory>

class cMain;

class cApp : public wxApp {
public:
Expand Down
4 changes: 2 additions & 2 deletions src/cMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void cMain::OnInjectButtonExecute(wxCommandEvent& evt, cMain& ref) {
ref.updateGlobalVars();
ref.cfg.updateConfigFile();

evt.Skip();
evt.Skip();
}

void cMain::OnSelectButton(wxCommandEvent& evt) {
Expand All @@ -103,7 +103,7 @@ void cMain::OnSelectButton(wxCommandEvent& evt) {
this->updateGlobalVars();
this->cfg.updateConfigFile();

evt.Skip();
evt.Skip();
}

void cMain::OnCustomCheckBox(wxCommandEvent& evt) {
Expand Down
6 changes: 1 addition & 5 deletions src/icon.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,4 @@

#define IDI_ICON1 101

IDI_ICON1 ICON "icon\\icon.ico"




IDI_ICON1 ICON "icon\\icon.ico"
Binary file modified src/icon/icon.ico
Binary file not shown.
Loading

0 comments on commit 24001b1

Please sign in to comment.