* Partial fix for issue 380.
* This remove a bug where a variable was not initialized in profiles.
* The impact on this could have ranged all the way to a full trashing
  of the user configuration files (though it requires some bad luck)
This commit is contained in:
jean.chalard
2010-05-05 06:27:52 +00:00
parent b0f1d301b8
commit db96cb5142
2 changed files with 11 additions and 6 deletions

View File

@@ -122,11 +122,12 @@ class OptionProfile:public OptionDirectory{
virtual void Entering(JButton key);
virtual void Reload();
virtual void Render();
virtual void initSelections();
virtual void confirmChange(bool confirmed);
virtual void updateValue();
void populate();
private:
GameApp * app;
private:
GameApp * app;
JGuiListener * listener;
bool canSelect;
string preview;