mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
ScEd: Compilation fixes. Atlas: Screen-space to world-space conversion when editing terrain. Wireframe option. Minor wxWidgets 2.6.1 fixes. AoE3Ed. This was SVN commit r2698.
26 lines
545 B
C++
26 lines
545 B
C++
#include "stdafx.h"
|
|
|
|
#include "FileHistory.h"
|
|
|
|
#include "wx/confbase.h"
|
|
|
|
FileHistory::FileHistory(const wxString& configSubdir)
|
|
: wxFileHistory(9), m_configSubdir(configSubdir)
|
|
{
|
|
}
|
|
|
|
void FileHistory::Load(wxConfigBase& config)
|
|
{
|
|
wxString old = config.GetPath();
|
|
config.SetPath(m_configSubdir);
|
|
wxFileHistory::Load(config);
|
|
config.SetPath(old);
|
|
}
|
|
|
|
void FileHistory::Save(wxConfigBase& config)
|
|
{
|
|
wxString old = config.GetPath();
|
|
config.SetPath(m_configSubdir);
|
|
wxFileHistory::Save(config);
|
|
config.SetPath(old);
|
|
}
|