Skip to content

Commit

Permalink
#5527: Fix a name collision compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Feb 6, 2021
1 parent 2279efe commit 3736c00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radiant/ui/mediabrowser/MediaBrowserTreeView.cpp
Expand Up @@ -247,8 +247,8 @@ MediaBrowserTreeView::MediaBrowserTreeView(wxWindow* parent) :

const MediaBrowserTreeView::TreeColumns& MediaBrowserTreeView::Columns() const
{
static TreeColumns _columns;
return _columns;
static TreeColumns _treeColumns;
return _treeColumns;
}

void MediaBrowserTreeView::SetTreeMode(MediaBrowserTreeView::TreeMode mode)
Expand Down

0 comments on commit 3736c00

Please sign in to comment.