summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/Application.h b/Application.h
index 8d5a0fcf..8287b9be 100644
--- a/Application.h
+++ b/Application.h
@@ -1,16 +1,14 @@
-/***************************************************************
- * Name: FreeFileSyncApp.h
- * Purpose: Defines Application Class
- * Author: ZenJu (zhnmju123@gmx.de)
- * Created: 2008-07-16
- **************************************************************/
-
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
+// **************************************************************************
+//
#ifndef FREEFILESYNCAPP_H
#define FREEFILESYNCAPP_H
#include <wx/app.h>
#include "library/processXml.h"
-#include <wx/help.h>
class Application : public wxApp
@@ -27,8 +25,6 @@ private:
void runBatchMode(const wxString& filename, xmlAccess::XmlGlobalSettings& globSettings);
xmlAccess::XmlGlobalSettings globalSettings; //settings used by GUI, batch mode or both
-
- boost::shared_ptr<wxHelpController> helpController; //global help controller
int returnValue;
};
bgstack15