1. made wxBase compile/link/run again under Unix

2. added wxSortedArrayString class and documented it


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-10-22 09:24:15 +00:00
parent 5dcec1d99b
commit e87271f358
7 changed files with 253 additions and 53 deletions

View File

@@ -17,19 +17,17 @@
// headers
// ----------------------------------------------------------------------------
#ifdef __GNUG__
#pragma implementation "appbase.h"
#endif
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif //__BORLANDC__
#include "wx/app.h"
#include "wx/debug.h"
#ifndef WX_PRECOMP
#include "wx/app.h"
#include "wx/debug.h"
#include "wx/module.h"
#endif
// ----------------------------------------------------------------------------
// global vars
@@ -40,12 +38,6 @@ wxApp * WXDLLEXPORT wxTheApp = NULL;
wxAppInitializerFunction
wxAppBase::m_appInitFn = (wxAppInitializerFunction)NULL;
#if wxUSE_THREADS
// List of events pending processing
wxList *wxPendingEvents = NULL;
wxCriticalSection *wxPendingEventsLocker = NULL;
#endif // wxUSE_THREADS
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------