diff options
Diffstat (limited to 'FreeFileSync/Source/lib/help_provider.h')
-rwxr-xr-x | FreeFileSync/Source/lib/help_provider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/lib/help_provider.h b/FreeFileSync/Source/lib/help_provider.h index 9b9c69e2..ab70ee29 100755 --- a/FreeFileSync/Source/lib/help_provider.h +++ b/FreeFileSync/Source/lib/help_provider.h @@ -48,7 +48,7 @@ void displayHelpEntry(const wxString& topic, wxWindow* parent) { const wxString section = L"html/" + topic + L".html"; wxHtmlModalHelp dlg(parent, utfTo<wxString>(zen::getResourceDirPf()) + L"Help/FreeFileSync.hhp", section, - wxHF_DEFAULT_STYLE | wxHF_DIALOG | wxHF_MODAL | wxHF_MERGE_BOOKS); + wxHF_DEFAULT_STYLE | wxHF_DIALOG | wxHF_MODAL | wxHF_MERGE_BOOKS); (void)dlg; //-> solves modal help craziness on OSX! //-> Suse Linux: avoids program hang on exit if user closed help parent dialog before the help dialog itself was closed (why is this even possible???) |