On Mon, 11 Mar 2002 09:41:45 +0100 (Westeurop�ische Normalzeit) Marcus Hufgard <[EMAIL PROTECTED]> wrote:
MH> Hi Vadim, MH> MH> You have changed following lines in wxMapp.cpp: MH> MH> +# include "wx/msw/helpbest.h" MH> MH> and MH> MH> + m_HelpController = new wxBestHelpController Yes, as the native (i.e. CHM) help controller is better than the wxHTML-based one so we should use it if available. MH> in helpbest.h are the following ifdefs: MH> MH> #if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) && wxUSE_WXHTML_HELP MH> MH> Now i had the following Problems with compiling it with Borland C++: MH> MH> wxUSE_HELP: this is defined as 1 in wxmsw_setup.h also in wxWindows MH> (TRUE) MH> MH> wxUSE_MS_HTML_HELP: this is defined as 0 in wxmsw_setup.h. (FALSE) Yes, because setting this to 1 used to require the presence of htmlhelp.h header from MS help SDK but I've modified the wxWin sources to compile without it now so it can be set to 1. But you'll have to update to the latest wxWin cvs or ghet htmlhelp.h (it's freely available from MS). MH> __WIN95__: i use WINNT 4.0 thats bad must this not be WIN32. MH> (FALSE) No, __WIN95__ is true for NT 4.0. It means "Win95-like shell". MH> Is this an bug of wxWindows? No, it's not a bug in wxWindows, in fact, it's a bug in M - I should test for wxUSE_MS_HTML_HELP. I'll try to fix it soon. BTW, could you please send me your borland makefiles? I'd really like to try them out and I also think they could be useful to the others. Thanks! VZ _______________________________________________ Mahogany-Developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/mahogany-developers
