Skip to content

Commit

Permalink
#5108: Linux compilation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Nov 30, 2020
1 parent 4bd351d commit 9902de7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions radiant/Makefile.am
Expand Up @@ -57,6 +57,7 @@ darkradiant_SOURCES = main.cpp \
ui/texturebrowser/TextureBrowser.cpp \
ui/texturebrowser/TextureBrowserManager.cpp \
ui/findshader/FindShader.cpp \
ui/mapselector/MapSelector.cpp \
ui/mapinfo/MapInfoDialog.cpp \
ui/mapinfo/EntityInfoTab.cpp \
ui/mapinfo/ShaderInfoTab.cpp \
Expand Down
8 changes: 7 additions & 1 deletion radiant/ui/mapselector/MapSelector.cpp
@@ -1,6 +1,7 @@
#include "MapSelector.h"

#include "i18n.h"
#include "ifiletypes.h"
#include "ifilesystem.h"

#include "string/case_conv.h"
Expand All @@ -19,8 +20,13 @@ namespace

MapSelector::MapSelector() :
DialogBase(_(MAPSELECTOR_TITLE)),
_treeView(nullptr),
_dialogPanel(nullptr),
_openButton(nullptr),
_reloadButton(nullptr),
_treeView(nullptr),
_useModPath(nullptr),
_useCustomPath(nullptr),
_customPath(nullptr),
_handlingSelectionChange(false)
{
SetSizer(new wxBoxSizer(wxVERTICAL));
Expand Down
1 change: 1 addition & 0 deletions radiant/ui/mapselector/MapSelector.h
Expand Up @@ -7,6 +7,7 @@
#include "wxutil/WindowPosition.h"
#include "wxutil/PathEntry.h"
#include <wx/button.h>
#include <wx/radiobut.h>

class wxStdDialogButtonSizer;

Expand Down
1 change: 1 addition & 0 deletions radiantcore/map/MapResourceLoader.cpp
@@ -1,5 +1,6 @@
#include "MapResourceLoader.h"

#include "i18n.h"
#include "fmt/format.h"
#include "scene/ChildPrimitives.h"
#include "scenelib.h"
Expand Down

0 comments on commit 9902de7

Please sign in to comment.