summaryrefslogtreecommitdiffstats
path: root/doc/html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html')
-rw-r--r--doc/html/ntqeventloop.html3
-rw-r--r--doc/html/qeventloop-h.html9
2 files changed, 7 insertions, 5 deletions
diff --git a/doc/html/ntqeventloop.html b/doc/html/ntqeventloop.html
index 2fe9c05ac..8b139b8a5 100644
--- a/doc/html/ntqeventloop.html
+++ b/doc/html/ntqeventloop.html
@@ -41,7 +41,7 @@ body { background: #ffffff; color: black; }
<ul>
<li class=fn><a href="#TQEventLoop"><b>TQEventLoop</b></a> ( TQObject&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
<li class=fn><a href="#~TQEventLoop"><b>~TQEventLoop</b></a> ()</li>
-<li class=fn>enum <a href="#ProcessEvents-enum"><b>ProcessEvents</b></a> { AllEvents = 0x00, ExcludeUserInput = 0x01, ExcludeSocketNotifiers = 0x02, WaitForMore = 0x04 }</li>
+<li class=fn>enum <a href="#ProcessEvents-enum"><b>ProcessEvents</b></a> { AllEvents = 0x00, ExcludeUserInput = 0x01, ExcludeSocketNotifiers = 0x02, WaitForMore = 0x04, ExcludeTimers = 0x08 }</li>
<li class=fn>typedef uint&nbsp;<a href="#ProcessEventsFlags"><b>ProcessEventsFlags</b></a></li>
<li class=fn>void <a href="#processEvents"><b>processEvents</b></a> ( ProcessEventsFlags&nbsp;flags, int&nbsp;maxTime )</li>
<li class=fn>virtual bool <a href="#processEvents-2"><b>processEvents</b></a> ( ProcessEventsFlags&nbsp;flags )</li>
@@ -97,6 +97,7 @@ it before you create the TQApplication object.
events.
<li><tt>TQEventLoop::WaitForMore</tt> - Wait for events if no pending events
are available.
+<li><tt>TQEventLoop::ExcludeTimers</tt> - Do not process timer events.
</ul><p> <p>See also <a href="#processEvents">processEvents</a>().
<h3 class=fn><a name="ProcessEventsFlags"></a>TQEventLoop::ProcessEventsFlags</h3>
diff --git a/doc/html/qeventloop-h.html b/doc/html/qeventloop-h.html
index 7ddf52e36..a74e35b58 100644
--- a/doc/html/qeventloop-h.html
+++ b/doc/html/qeventloop-h.html
@@ -102,10 +102,11 @@ public:
~TQEventLoop();
enum ProcessEvents {
- AllEvents = 0x00,
- ExcludeUserInput = 0x01,
- ExcludeSocketNotifiers = 0x02,
- WaitForMore = 0x04
+ AllEvents = 0x00,
+ ExcludeUserInput = 0x01,
+ ExcludeSocketNotifiers = 0x02,
+ WaitForMore = 0x04,
+ ExcludeTimers = 0x08
};
typedef uint ProcessEventsFlags;