diff --git a/AboutDlg.cpp b/AboutDlg.cpp index a7edf0a..8edd169 100644 --- a/AboutDlg.cpp +++ b/AboutDlg.cpp @@ -1,4 +1,4 @@ -#include "./AboutDlg.h" +#include "AboutDlg.h" AboutDlg::AboutDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("О программе")) { diff --git a/AboutDlg.h b/AboutDlg.h index 99d5b5d..030b5ff 100644 --- a/AboutDlg.h +++ b/AboutDlg.h @@ -1,7 +1,7 @@ #ifndef ABOUTDLG_H #define ABOUTDLG_H -#include "./wxw.h" +#include "wxw.h" class AboutDlg : public wxDialog { diff --git a/App.cpp b/App.cpp index 16dd507..a1e2c38 100644 --- a/App.cpp +++ b/App.cpp @@ -1,5 +1,5 @@ -#include "./App.h" -#include "./MainFrame.h" +#include "App.h" +#include "MainFrame.h" wxIMPLEMENT_APP(MyApp); diff --git a/App.h b/App.h index a9a45a7..6ebdb77 100644 --- a/App.h +++ b/App.h @@ -1,7 +1,7 @@ #ifndef APP_H_ #define APP_H_ -#include "./wxw.h" +#include "wxw.h" class MyApp : public wxApp { diff --git a/HelpDlg.cpp b/HelpDlg.cpp index 569b08d..afe4d20 100644 --- a/HelpDlg.cpp +++ b/HelpDlg.cpp @@ -1,4 +1,4 @@ -#include "./HelpDlg.h" +#include "HelpDlg.h" HelpDlg::HelpDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Инструкция по использованию программы")) { diff --git a/HelpDlg.h b/HelpDlg.h index 46ca873..a1849cc 100644 --- a/HelpDlg.h +++ b/HelpDlg.h @@ -1,7 +1,7 @@ #ifndef HELPDLG_H #define HELPDLG_H -#include "./wxw.h" +#include "wxw.h" class HelpDlg : public wxDialog { diff --git a/RulesDlg.cpp b/RulesDlg.cpp index 29c1bde..e340878 100644 --- a/RulesDlg.cpp +++ b/RulesDlg.cpp @@ -1,4 +1,4 @@ -#include "./RulesDlg.h" +#include "RulesDlg.h" RulesDlg::RulesDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Правила игры")) { diff --git a/RulesDlg.h b/RulesDlg.h index e296baf..d643580 100644 --- a/RulesDlg.h +++ b/RulesDlg.h @@ -1,7 +1,7 @@ #ifndef RULESDLG_H #define RULESDLG_H -#include "./wxw.h" +#include "wxw.h" class RulesDlg : public wxDialog {