X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2a47d3c193a8358f9be6a9249af28b6cb10eacff..6f349458f6903083bd967f52624a5e639733ad5d:/src/motif/data.cpp?ds=sidebyside

diff --git a/src/motif/data.cpp b/src/motif/data.cpp
index bbe4fe2ad7..da2257c739 100644
--- a/src/motif/data.cpp
+++ b/src/motif/data.cpp
@@ -6,7 +6,7 @@
 // Created:     17/09/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:   	wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
@@ -22,11 +22,17 @@
 char *wxBuffer = NULL;
 
 // Windows List
-wxList wxTopLevelWindows;
+wxWindowList wxTopLevelWindows;
 
 // List of windows pending deletion
 wxList wxPendingDelete;
 
+#if wxUSE_THREADS
+// List of events pending propagation
+wxList *wxPendingEvents = NULL;
+wxCriticalSection *wxPendingEventsLocker = NULL;
+#endif
+
 int wxPageNumber;
 
 // GDI Object Lists
@@ -123,6 +129,8 @@ const char *wxFileSelectorPromptStr = "Select a file";
 const char *wxFileSelectorDefaultWildcardStr = "*.*";
 const char *wxInternalErrorStr = "wxWindows Internal Error";
 const char *wxFatalErrorStr = "wxWindows Fatal Error";
+const char *wxDirDialogNameStr = "wxDirCtrl";
+const char *wxDirDialogDefaultFolderStr = "/";
 
 // See wx/utils.h
 const char *wxFloatToStringStr = "%.2f";