removed dots from include paths

This commit is contained in:
Dmitriy Shishkov 2022-04-17 11:39:20 +03:00
parent 4d0c579ea7
commit 22b2fbd575
No known key found for this signature in database
GPG Key ID: 14358F96FCDD8060
8 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
#include "./AboutDlg.h" #include "AboutDlg.h"
AboutDlg::AboutDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("О программе")) AboutDlg::AboutDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("О программе"))
{ {

View File

@ -1,7 +1,7 @@
#ifndef ABOUTDLG_H #ifndef ABOUTDLG_H
#define ABOUTDLG_H #define ABOUTDLG_H
#include "./wxw.h" #include "wxw.h"
class AboutDlg : public wxDialog class AboutDlg : public wxDialog
{ {

View File

@ -1,5 +1,5 @@
#include "./App.h" #include "App.h"
#include "./MainFrame.h" #include "MainFrame.h"
wxIMPLEMENT_APP(MyApp); wxIMPLEMENT_APP(MyApp);

2
App.h
View File

@ -1,7 +1,7 @@
#ifndef APP_H_ #ifndef APP_H_
#define APP_H_ #define APP_H_
#include "./wxw.h" #include "wxw.h"
class MyApp : public wxApp class MyApp : public wxApp
{ {

View File

@ -1,4 +1,4 @@
#include "./HelpDlg.h" #include "HelpDlg.h"
HelpDlg::HelpDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Инструкция по использованию программы")) HelpDlg::HelpDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Инструкция по использованию программы"))
{ {

View File

@ -1,7 +1,7 @@
#ifndef HELPDLG_H #ifndef HELPDLG_H
#define HELPDLG_H #define HELPDLG_H
#include "./wxw.h" #include "wxw.h"
class HelpDlg : public wxDialog class HelpDlg : public wxDialog
{ {

View File

@ -1,4 +1,4 @@
#include "./RulesDlg.h" #include "RulesDlg.h"
RulesDlg::RulesDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Правила игры")) RulesDlg::RulesDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Правила игры"))
{ {

View File

@ -1,7 +1,7 @@
#ifndef RULESDLG_H #ifndef RULESDLG_H
#define RULESDLG_H #define RULESDLG_H
#include "./wxw.h" #include "wxw.h"
class RulesDlg : public wxDialog class RulesDlg : public wxDialog
{ {