]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix wxWakeUpIdle() in Unix console application broken by r71089.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 May 2012 15:10:01 +0000 (15:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 May 2012 15:10:01 +0000 (15:10 +0000)
Initialize m_pipeIsEmpty to true as we don't have anything in the pipe
initially and if this variable was false, nothing was ever written to the wake
up pipe and it was never set to true as nothing was read from it neither.

Closes #14166.

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

src/unix/evtloopunix.cpp

index 98b612cae5108d9951029f29a965bbd897373f07..a4f67ecad633248127db883e71f257f4a511ad50 100644 (file)
@@ -58,7 +58,7 @@ class PipeIOHandler : public wxFDIOHandler
 public:
     // default ctor does nothing, call Create() to really initialize the
     // object
-    PipeIOHandler() : m_pipeIsEmpty(false) { }
+    PipeIOHandler() : m_pipeIsEmpty(true) { }
 
     bool Create();