Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windirstat/windirstat.cpp')
-rw-r--r--windirstat/windirstat.cpp18
1 files changed, 5 insertions, 13 deletions
diff --git a/windirstat/windirstat.cpp b/windirstat/windirstat.cpp
index 30f3e04..d28bd5b 100644
--- a/windirstat/windirstat.cpp
+++ b/windirstat/windirstat.cpp
@@ -765,22 +765,14 @@ BOOL CDirstatApp::OnIdle(LONG lCount)
void CDirstatApp::OnHelpManual()
{
+ // FIXME: open browser, point to Wiki (via windirstat.net short link), based on current language
DoContextHelp(IDH_StartPage);
}
-void CDirstatApp::DoContextHelp(DWORD topic)
+void CDirstatApp::DoContextHelp(DWORD)
{
- if(::PathFileExists(m_pszHelpFilePath))
- {
- // I want a NULL parent window. So I don't use CWinApp::HtmlHelp().
- ::HtmlHelp(NULL, m_pszHelpFilePath, HH_HELP_CONTEXT, topic);
- }
- else
- {
- CString msg;
- msg.FormatMessage(IDS_HELPFILEsCOULDNOTBEFOUND, _T("windirstat.chm"));
- // TODO: Add the option to download the "current language" help file ...
- AfxMessageBox(msg);
- }
+ CString msg;
+ msg.FormatMessage(IDS_HELPFILEsCOULDNOTBEFOUND, _T("windirstat.chm"));
+ AfxMessageBox(msg);
}