Some more source organization

This commit is contained in:
Tim Warren 2015-04-06 17:27:09 -04:00
parent ad83b42835
commit dfbb4a7661
7 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
#include "common.h" #include "common.h"
#include "TyroApp.h" #include "TyroApp.h"
#include "TabContainer.h" #include "widgets/TabContainer.h"
class MainFrame: public wxFrame class MainFrame: public wxFrame
{ {

View File

@ -9,7 +9,7 @@
#define SFTP_H #define SFTP_H
#define LIBSSH_STATIC 1 #define LIBSSH_STATIC 1
#include "common.h" #include "../common.h"
// libssh2 includes // libssh2 includes
#include <libssh2.h> #include <libssh2.h>

View File

@ -1,7 +1,7 @@
#ifndef TYROEDIT_PANE_H #ifndef TYROEDIT_PANE_H
#define TYROEDIT_PANE_H #define TYROEDIT_PANE_H
#include "common.h" #include "../common.h"
#include <wx/stc/stc.h> #include <wx/stc/stc.h>
class EditPane: public wxStyledTextCtrl class EditPane: public wxStyledTextCtrl

View File

@ -5,7 +5,7 @@
#ifndef TABCONTAINER_H #ifndef TABCONTAINER_H
#define TABCONTAINER_H #define TABCONTAINER_H
#include "common.h" #include "../common.h"
#include <wx/aui/aui.h> #include <wx/aui/aui.h>
#include "EditPane.h" #include "EditPane.h"