summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/lib/help_provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/lib/help_provider.h')
-rwxr-xr-xFreeFileSync/Source/lib/help_provider.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeFileSync/Source/lib/help_provider.h b/FreeFileSync/Source/lib/help_provider.h
index 755adad2..1ac0a278 100755
--- a/FreeFileSync/Source/lib/help_provider.h
+++ b/FreeFileSync/Source/lib/help_provider.h
@@ -8,7 +8,7 @@
#define HELP_PROVIDER_H_85930427583421563126
#if 1
-namespace zen
+namespace fff
{
inline void displayHelpEntry(const wxString& topic, wxWindow* parent) { wxLaunchDefaultBrowser(L"https://www.freefilesync.org/manual.php?topic=" + topic); }
inline void uninitializeHelp() {}
@@ -22,7 +22,7 @@ inline void uninitializeHelp() {}
#include <wx/html/helpctrl.h>
-namespace zen
+namespace fff
{
void displayHelpEntry(const wxString& topic, wxWindow* parent);
void uninitializeHelp(); //clean up gracefully during app shutdown: leaving this up to static destruction crashes on Win 8.1!
bgstack15