From 43acb27d0062422db28d2ed4514b53208a0aab36 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 3 Nov 2005 16:38:15 +0000 Subject: [PATCH] cleanup --- stepmania/src/IniFile.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/IniFile.h b/stepmania/src/IniFile.h index 857d4d16a8..3413661393 100644 --- a/stepmania/src/IniFile.h +++ b/stepmania/src/IniFile.h @@ -10,11 +10,6 @@ class RageFileBasic; class IniFile : public XNode { -private: - CString m_sPath; - - mutable CString m_sError; - public: IniFile(); @@ -46,6 +41,11 @@ public: * reading an INI where [foo] is an alias to [main]. If to already * exists, nothing happens. */ bool RenameKey( const CString &from, const CString &to ); + +private: + CString m_sPath; + + mutable CString m_sError; }; #endif