forked from mirrors/0ad
3d26549032
This was SVN commit r3802.
27 lines
519 B
C++
27 lines
519 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);
|
|
}
|