diff options
Diffstat (limited to 'shared/help_provider.cpp')
-rw-r--r-- | shared/help_provider.cpp | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/shared/help_provider.cpp b/shared/help_provider.cpp deleted file mode 100644 index 666482eb..00000000 --- a/shared/help_provider.cpp +++ /dev/null @@ -1,44 +0,0 @@ -// ************************************************************************** -// * 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-2011 ZenJu (zhnmju123 AT gmx.de) * -// ************************************************************************** - -#include "help_provider.h" -#include <wx/help.h> -#include "standard_paths.h" -#include <wx/image.h> - -namespace -{ -class HelpProvider -{ -public: - HelpProvider() - { - controller.Initialize(zen::getResourceDir() + -#ifdef FFS_WIN - L"FreeFileSync.chm"); -#elif defined FFS_LINUX - L"Help/FreeFileSync.hhp"); -#endif - } - - void showHelp(const wxString& section) - { - if (section.empty()) - controller.DisplayContents(); - else - controller.DisplaySection(section); - } - -private: - wxHelpController controller; -}; -} - -void zen::displayHelpEntry(const wxString& section) -{ - static HelpProvider provider; - provider.showHelp(section); -} |