Skip to content

Commit

Permalink
#5127: Linux build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Jan 3, 2021
1 parent 73b32d0 commit 3cb6975
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/wxutil/CMakeLists.txt
@@ -1,5 +1,6 @@
add_library(wxutil
ConsoleView.cpp
dataview/KeyValueTable.cpp
dataview/ResourceTreeView.cpp
dataview/ThreadedResourceTreePopulator.cpp
dataview/TreeModel.cpp
Expand All @@ -16,7 +17,6 @@ add_library(wxutil
FileChooser.cpp
FreezePointer.cpp
GLWidget.cpp
KeyValueTable.cpp
menu/PopupMenu.cpp
ModalProgressDialog.cpp
MouseToolHandler.cpp
Expand Down
3 changes: 2 additions & 1 deletion radiant/ui/mediabrowser/MediaBrowserTreeView.cpp
@@ -1,5 +1,6 @@
#include "MediaBrowserTreeView.h"

#include <map>
#include "i18n.h"
#include "ifavourites.h"
#include "iuimanager.h"
Expand Down Expand Up @@ -63,7 +64,7 @@ struct ShaderNameFunctor

// Maps of names to corresponding treemodel items, for both intermediate
// paths and explicitly presented paths
typedef std::map<std::string, wxDataViewItem, ShaderNameCompareFunctor> NamedIterMap;
using NamedIterMap = std::map<std::string, wxDataViewItem, ShaderNameCompareFunctor>;
NamedIterMap _iters;

wxIcon _folderIcon;
Expand Down
1 change: 1 addition & 0 deletions radiantcore/decl/FavouriteSet.h
Expand Up @@ -2,6 +2,7 @@

#include <string>
#include <set>
#include "iregistry.h"

namespace decl
{
Expand Down
1 change: 1 addition & 0 deletions radiantcore/decl/FavouritesManager.h
@@ -1,5 +1,6 @@
#pragma once

#include <map>
#include "ifavourites.h"
#include "FavouriteSet.h"

Expand Down

0 comments on commit 3cb6975

Please sign in to comment.