]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/evtloop.h
removed unneeded (after patch 1027243) disable.bmp
[wxWidgets.git] / include / wx / evtloop.h
index bc8ea3d0771e1366980c8e0089cb36264400673d..42b00f2d03f85a03d350f96017cd2848e64c6115 100644 (file)
@@ -39,10 +39,10 @@ public:
     // exit from the loop with the given exit code
     virtual void Exit(int rc = 0) = 0;
 
-    // return TRUE if any events are available
+    // return true if any events are available
     virtual bool Pending() const = 0;
 
-    // dispatch a single event, return FALSE if we should exit from the loop
+    // dispatch a single event, return false if we should exit from the loop
     virtual bool Dispatch() = 0;
 
     // is the event loop running now?
@@ -83,7 +83,7 @@ class WXDLLEXPORT wxEventLoop : public wxEventLoopBase
 public:
     wxEventLoop() { m_impl = NULL; }
     virtual ~wxEventLoop();
-    
+
     virtual int Run();
     virtual void Exit(int rc = 0);
     virtual bool Pending() const;