#include "wx/wxprec.h"
#ifdef __BORLANDC__
-#pragma hdrstop
+ #pragma hdrstop
#endif
+#if wxUSE_HELP
+
#ifndef WX_PRECOMP
-#include "wx/defs.h"
#endif
-#if wxUSE_HELP
-
#include "wx/filefn.h"
#include "wx/msw/helpwin.h"
bool wxWinHelpController::LoadFile(const wxString& file)
{
- if (!file.IsEmpty())
+ if (!file.empty())
m_helpFile = file;
return true;
}
bool wxWinHelpController::DisplayContents(void)
{
- if (m_helpFile.IsEmpty()) return false;
+ if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
bool wxWinHelpController::DisplaySection(int section)
{
// Use context number
- if (m_helpFile.IsEmpty()) return false;
+ if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
bool wxWinHelpController::DisplayContextPopup(int contextId)
{
- if (m_helpFile.IsEmpty()) return false;
+ if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
bool wxWinHelpController::KeywordSearch(const wxString& k,
wxHelpSearchMode WXUNUSED(mode))
{
- if (m_helpFile.IsEmpty()) return false;
+ if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
wxSplitPath(file, & path, & name, & ext);
wxString fullName;
- if (path.IsEmpty())
+ if (path.empty())
fullName = name + wxT(".hlp");
else if (path.Last() == wxT('\\'))
fullName = path + name + wxT(".hlp");