removed dots from include paths
This commit is contained in:
parent
4d0c579ea7
commit
22b2fbd575
@ -1,4 +1,4 @@
|
||||
#include "./AboutDlg.h"
|
||||
#include "AboutDlg.h"
|
||||
|
||||
AboutDlg::AboutDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("О программе"))
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef ABOUTDLG_H
|
||||
#define ABOUTDLG_H
|
||||
|
||||
#include "./wxw.h"
|
||||
#include "wxw.h"
|
||||
|
||||
class AboutDlg : public wxDialog
|
||||
{
|
||||
|
4
App.cpp
4
App.cpp
@ -1,5 +1,5 @@
|
||||
#include "./App.h"
|
||||
#include "./MainFrame.h"
|
||||
#include "App.h"
|
||||
#include "MainFrame.h"
|
||||
|
||||
wxIMPLEMENT_APP(MyApp);
|
||||
|
||||
|
2
App.h
2
App.h
@ -1,7 +1,7 @@
|
||||
#ifndef APP_H_
|
||||
#define APP_H_
|
||||
|
||||
#include "./wxw.h"
|
||||
#include "wxw.h"
|
||||
|
||||
class MyApp : public wxApp
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "./HelpDlg.h"
|
||||
#include "HelpDlg.h"
|
||||
|
||||
HelpDlg::HelpDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Инструкция по использованию программы"))
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef HELPDLG_H
|
||||
#define HELPDLG_H
|
||||
|
||||
#include "./wxw.h"
|
||||
#include "wxw.h"
|
||||
|
||||
class HelpDlg : public wxDialog
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "./RulesDlg.h"
|
||||
#include "RulesDlg.h"
|
||||
|
||||
RulesDlg::RulesDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Правила игры"))
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef RULESDLG_H
|
||||
#define RULESDLG_H
|
||||
|
||||
#include "./wxw.h"
|
||||
#include "wxw.h"
|
||||
|
||||
class RulesDlg : public wxDialog
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user