Remove relative include paths
This commit is contained in:
parent
ab0c586b25
commit
3e78b8cd4c
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../common.h"
|
#include "src/common.h"
|
||||||
|
|
||||||
// Socket includes
|
// Socket includes
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
@ -15,7 +15,7 @@ static FilePane *filePane = nullptr;
|
|||||||
|
|
||||||
|
|
||||||
// Frame icon
|
// Frame icon
|
||||||
#include "../../resources/xpm/tyro.xpm"
|
#include "resources/xpm/tyro.xpm"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
@ -127,12 +127,12 @@ void MainFrame::SetupToolbar()
|
|||||||
{
|
{
|
||||||
// Icon files
|
// Icon files
|
||||||
#ifndef __WXGTK__
|
#ifndef __WXGTK__
|
||||||
#include "../../resources/xpm/32/new.xpm"
|
#include "resources/xpm/32/new.xpm"
|
||||||
#include "../../resources/xpm/32/open.xpm"
|
#include "resources/xpm/32/open.xpm"
|
||||||
#include "../../resources/xpm/32/save.xpm"
|
#include "resources/xpm/32/save.xpm"
|
||||||
#include "../../resources/xpm/32/cut.xpm"
|
#include "resources/xpm/32/cut.xpm"
|
||||||
#include "../../resources/xpm/32/copy.xpm"
|
#include "resources/xpm/32/copy.xpm"
|
||||||
#include "../../resources/xpm/32/paste.xpm"
|
#include "resources/xpm/32/paste.xpm"
|
||||||
|
|
||||||
wxBitmap new_file_icon(new_file);
|
wxBitmap new_file_icon(new_file);
|
||||||
wxBitmap open_file_icon(open);
|
wxBitmap open_file_icon(open);
|
||||||
|
Loading…
Reference in New Issue
Block a user