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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/lib/help_provider.h b/FreeFileSync/Source/lib/help_provider.h
index b1278424..15d986a7 100755
--- a/FreeFileSync/Source/lib/help_provider.h
+++ b/FreeFileSync/Source/lib/help_provider.h
@@ -47,7 +47,7 @@ void displayHelpEntry(const wxString& topic, wxWindow* parent)
-> what if FFS is blocked, but the web browser would have internet access??
{
const wxString section = L"html/" + topic + L".html";
- wxHtmlModalHelp dlg(parent, utfCvrtTo<wxString>(zen::getResourceDirPf()) + L"Help/FreeFileSync.hhp", section,
+ wxHtmlModalHelp dlg(parent, utfTo<wxString>(zen::getResourceDirPf()) + L"Help/FreeFileSync.hhp", section,
wxHF_DEFAULT_STYLE | wxHF_DIALOG | wxHF_MODAL | wxHF_MERGE_BOOKS);
(void)dlg;
//-> solves modal help craziness on OSX!
bgstack15