TRUE, not true; FALSE not false

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16868 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-08-30 17:04:12 +00:00
parent fa3d9b4e30
commit f13b39c0c3

View File

@@ -860,13 +860,13 @@ int wxDebugContext::CountObjectsLeft(bool sinceCheckpoint)
}
#if wxUSE_THREADS
static bool memSectionOk = false;
static bool memSectionOk = FALSE;
class MemoryCriticalSection : public wxCriticalSection
{
public:
MemoryCriticalSection() {
memSectionOk = true;
memSectionOk = TRUE;
}
};