Index: src/ch/AppHelper.h
===================================================================
diff -u -rd2b121c78f510b5384b8ef0ca80afbfd7f77fef7 -rd5c3edd0d167db9b5d47d04248820fda49499a5e
--- src/ch/AppHelper.h	(.../AppHelper.h)	(revision d2b121c78f510b5384b8ef0ca80afbfd7f77fef7)
+++ src/ch/AppHelper.h	(.../AppHelper.h)	(revision d5c3edd0d167db9b5d47d04248820fda49499a5e)
@@ -15,47 +15,47 @@
 *   License along with this program; if not, write to the                 *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
-***************************************************************************/
-#ifndef __APPHELPER_H__
-#define __APPHELPER_H__
-
-class CAppHelper
-{
-public:
-	CAppHelper();
-	~CAppHelper();
-
-	void SetAutorun(bool bState);		// changes state of "run with system" option
-	PTSTR ExpandPath(PTSTR pszString);	// expands path string - ie. <windows> into c:\windows
-
-	bool IsFirstInstance() const { return m_bFirstInstance; };
-
-	PCTSTR GetAppName() const { return m_pszAppName; };
-	PCTSTR GetAppNameVer() const { return m_pszAppNameVer; };
-	PCTSTR GetAppVersion() const { return m_pszAppVersion; };
-
-	PCTSTR GetProgramPath() const { return m_pszProgramPath; };
-	PCTSTR GetProgramName() const { return m_pszProgramName; };
-
-	static bool GetProgramDataPath(CString& rStrPath);
-
-protected:
-	void InitProtection();		// optional call - protects from running multiple instance
-	void RetrievePaths();							// reads program's path and name
-	void RetrieveAppInfo();							// reads app name and version from VERSION resource
-	UINT GetFolderLocation(int iFolder, PTSTR pszBuffer);
-
-protected:
-	HANDLE m_hMutex;
-	bool m_bFirstInstance;		// tells if it is first instance(true) or second(or third, ...)
-
-	// program placement
-	TCHAR* m_pszProgramPath;	// path from which this program was run
-	TCHAR* m_pszProgramName;	// name of this program (ie. CH.exe)
-
-	TCHAR* m_pszAppName;		// app-name string of this app
-	TCHAR* m_pszAppNameVer;		// extended app-name-with small version
-	TCHAR* m_pszAppVersion;		// app-version string of this app (VERSION based)
-};
-
+***************************************************************************/
+#ifndef __APPHELPER_H__
+#define __APPHELPER_H__
+
+class CAppHelper
+{
+public:
+	CAppHelper();
+	~CAppHelper();
+
+	void SetAutorun(bool bState);		// changes state of "run with system" option
+	PTSTR ExpandPath(PTSTR pszString);	// expands path string - ie. <windows> into c:\windows
+
+	bool IsFirstInstance() const { return m_bFirstInstance; };
+
+	PCTSTR GetAppName() const { return m_pszAppName; };
+	PCTSTR GetAppNameVer() const { return m_pszAppNameVer; };
+	PCTSTR GetAppVersion() const { return m_pszAppVersion; };
+
+	PCTSTR GetProgramPath() const { return m_pszProgramPath; };
+	PCTSTR GetProgramName() const { return m_pszProgramName; };
+
+	static bool GetProgramDataPath(CString& rStrPath);
+
+protected:
+	void InitProtection();		// optional call - protects from running multiple instance
+	void RetrievePaths();							// reads program's path and name
+	void RetrieveAppInfo();							// reads app name and version from VERSION resource
+	UINT GetFolderLocation(int iFolder, PTSTR pszBuffer);
+
+protected:
+	HANDLE m_hMutex;
+	bool m_bFirstInstance;		// tells if it is first instance(true) or second(or third, ...)
+
+	// program placement
+	TCHAR* m_pszProgramPath;	// path from which this program was run
+	TCHAR* m_pszProgramName;	// name of this program (ie. CH.exe)
+
+	TCHAR* m_pszAppName;		// app-name string of this app
+	TCHAR* m_pszAppNameVer;		// extended app-name-with small version
+	TCHAR* m_pszAppVersion;		// app-version string of this app (VERSION based)
+};
+
 #endif
\ No newline at end of file