no message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-10-25 20:03:39 +00:00
parent 257980e6f2
commit 16a12a3d27
19 changed files with 600 additions and 157 deletions

View File

@@ -68,7 +68,7 @@ static wxString SafeFileName(const wxString& s)
}
static int IndexCompareFunc(const void *a, const void *b)
static int LINKAGEMODE IndexCompareFunc(const void *a, const void *b)
{
return strcmp(((wxHtmlContentsItem*)a) -> m_Name, ((wxHtmlContentsItem*)b) -> m_Name);
}
@@ -549,7 +549,11 @@ bool wxHtmlSearchStatus::Search()
if (! m_Active) {
// sanity check. Illegal use, but we'll try to prevent a crash anyway
wxASSERT(0);
#if !defined(__VISAGECPP__)
wxASSERT(0);
#else
wxASSERT(m_Active);
#endif
return FALSE;
}