projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
put constant in define
[wxWidgets.git]
/
src
/
x11
/
utils.cpp
diff --git
a/src/x11/utils.cpp
b/src/x11/utils.cpp
index df9d4f9da5b42e29040cc2e3a1017e953feec1c7..2f06547b2d5e431ba2a609926a576cac4e397676 100644
(file)
--- a/
src/x11/utils.cpp
+++ b/
src/x11/utils.cpp
@@
-34,6
+34,8
@@
#endif
#include "wx/apptrait.h"
#endif
#include "wx/apptrait.h"
+#include "wx/generic/private/timer.h"
+#include "wx/evtloop.h"
#include <ctype.h>
#include <stdarg.h>
#include <ctype.h>
#include <stdarg.h>
@@
-110,6
+112,7
@@
void wxCheckForFinishedChildren()
// Map empty, delete it.
delete gs_procmap;
gs_procmap = NULL;
// Map empty, delete it.
delete gs_procmap;
gs_procmap = NULL;
+ return;
}
for (it = gs_procmap->begin();it != gs_procmap->end(); ++it)
{
}
for (it = gs_procmap->begin();it != gs_procmap->end(); ++it)
{
@@
-168,6
+171,10
@@
wxPortId wxGUIAppTraits::GetToolkitVersion(int *verMaj, int *verMin) const
return wxPORT_X11;
}
return wxPORT_X11;
}
+wxEventLoopBase* wxGUIAppTraits::CreateEventLoop()
+{
+ return new wxEventLoop;
+}
// ----------------------------------------------------------------------------
// display info
// ----------------------------------------------------------------------------
// display info
@@
-272,8
+279,11
@@
void wxCloseDisplay()
bool wxSetDisplay(const wxString& displayName)
{
bool wxSetDisplay(const wxString& displayName)
{
- Display *
- dpy = XOpenDisplay(displayName.empty() ? NULL : displayName.mb_str());
+ Display *dpy = XOpenDisplay
+ (
+ displayName.empty() ? NULL
+ : (const char *)displayName.mb_str()
+ );
if ( !dpy )
{
if ( !dpy )
{