// Created: 02/04/2001
// RCS-ID: $Id$
// Copyright: (c) Mattia Barbon
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "helpbest.h"
#endif
#include "wx/filefn.h"
#include "wx/log.h"
-#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) && wxUSE_WXHTML_HELP
+#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) \
+ && wxUSE_WXHTML_HELP && !defined(__WXUNIVERSAL__)
+
#include "wx/msw/helpchm.h"
#include "wx/html/helpctrl.h"
#include "wx/msw/helpbest.h"
if( chm->Initialize( GetValidFilename( filename ) ) )
{
m_helpController = chm;
- return TRUE;
+ return true;
}
// failed
if( html->Initialize( GetValidFilename( filename ) ) )
{
m_helpController = html;
- return TRUE;
+ return true;
}
// failed
delete html;
- return FALSE;
+ return false;
}
wxString wxBestHelpController::GetValidFilename( const wxString& filename ) const