Added bc_ide.txt as a tech note; updated readme; added CHM targets for makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7453 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-05-22 11:13:10 +00:00
parent 72ef08c782
commit 7c777c5c15
37 changed files with 193 additions and 134 deletions

View File

@@ -28,7 +28,7 @@ wxWindows 2.2.
\membersection{wxCHECK\_VERSION}\label{wxcheckversion}
\func{bool}{wxCHECK\_VERSION}{\param{major, minor, release}}
\func{bool}{wxCHECK\_VERSION}{\param{}{major, minor, release}}
This is a macro which evaluates to true if the current wxWindows version is at
least major.minor.release.
@@ -37,7 +37,7 @@ For example, to test if the program is compiled with wxWindows 2.2 or higher,
the following can be done:
\begin{verbatim}
wxString s;
wxString s;
#if wxCHECK_VERSION(2, 2, 0)
if ( s.StartsWith("foo") )
#else // replacement code for old version