]> git.saurik.com Git - wxWidgets.git/commitdiff
1. wxBase compiles/links again
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 26 Nov 1999 11:37:42 +0000 (11:37 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 26 Nov 1999 11:37:42 +0000 (11:37 +0000)
2. wxString::reserve() (STLese for Alloc()) added
3. compilation fixes for mingw32/BC++

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/app.h
include/wx/string.h
src/common/init.cpp

index 2ce1cad8bf8e2f86e4d73f096d4a503db0ab200d..51d126b8ea444cba04972a5224c5febbb64a2b9a 100644 (file)
@@ -302,8 +302,6 @@ WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
 // event loop related functions only work in GUI programs
 // ------------------------------------------------------
 
-#if wxUSE_GUI
-
 // Force an exit from main loop
 extern void WXDLLEXPORT wxExit();
 
@@ -313,6 +311,8 @@ extern bool WXDLLEXPORT wxYield();
 // Yield to other apps/messages
 extern void WXDLLEXPORT wxWakeUpIdle();
 
+#if wxUSE_GUI
+
 // Post a message to the given eventhandler which will be processed during the
 // next event loop iteration
 inline void WXDLLEXPORT wxPostEvent(wxEvtHandler *dest, wxEvent& event)
@@ -322,7 +322,7 @@ inline void WXDLLEXPORT wxPostEvent(wxEvtHandler *dest, wxEvent& event)
     dest->AddPendingEvent(event);
 }
 
-#endif // wxUSE_GUI
+#endif // wxUSE_GUI/!wxUSE_GUI
 
 // console applications may avoid using DECLARE_APP and IMPLEMENT_APP macros
 // and call these functions instead at the program startup and termination
index cf7a45ac25ca6f976b7f4f9f5e6599d93ad08040..29be6c677036cb01ece4225420b36dca423cd135 100644 (file)
@@ -705,6 +705,8 @@ public:
   void clear() { Empty(); }
     // returns true if the string is empty
   bool empty() const { return IsEmpty(); }
+    // inform string about planned change in size
+  void reserve(size_t size) { Alloc(size); }
 
   // lib.string.access
     // return the character at position n
index 8925cb193f5e7adf6c6e25aa51d2037b89cd72fe..846026eb938e5503cdf9db2945f578b56a5c6b11 100644 (file)
@@ -60,6 +60,32 @@ static size_t gs_nInitCount = 0;
 // implementation
 // ============================================================================
 
+// ----------------------------------------------------------------------------
+// stubs for some GUI functions
+// ----------------------------------------------------------------------------
+
+void WXDLLEXPORT wxExit()
+{
+    abort();
+}
+
+// Yield to other apps/messages
+bool WXDLLEXPORT wxYield()
+{
+    // do nothing
+    return TRUE;
+}
+
+// Yield to other apps/messages
+void WXDLLEXPORT wxWakeUpIdle()
+{
+    // do nothing
+}
+
+// ----------------------------------------------------------------------------
+// wxBase-specific functions
+// ----------------------------------------------------------------------------
+
 bool WXDLLEXPORT wxInitialize()
 {
     if ( gs_nInitCount )