]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected name of wxWS_EX_PROCESS_UI_UPDATES style (part of patch 1686335)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Mar 2007 00:53:13 +0000 (00:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Mar 2007 00:53:13 +0000 (00:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/upduievt.tex

index aea947ee533244f943cb7e2b5152e3f597150dcb..48774b5c9a4675ebe919f4126f1db873c721732c 100644 (file)
@@ -52,7 +52,7 @@ your application, you can do one or both of the following:
 \begin{enumerate}
 \item Call \helpref{wxUpdateUIEvent::SetMode}{wxupdateuieventsetmode} with
 a value of wxUPDATE\_UI\_PROCESS\_SPECIFIED, and set the extra style
-wxWS\_EX\_PROCESS\_UPDATE\_EVENTS for every window that should receive update events.
+wxWS\_EX\_PROCESS\_UI\_UPDATES for every window that should receive update events.
 No other windows will receive update events.
 \item Call \helpref{wxUpdateUIEvent::SetUpdateInterval}{wxupdateuieventsetupdateinterval} with
 a millisecond value to set the delay between updates. You may need
@@ -89,7 +89,7 @@ Returns {\tt true} if it is appropriate to update (send UI update events to)
 this window.
 
 This function looks at the mode used (see \helpref{wxUpdateUIEvent::SetMode}{wxupdateuieventsetmode}),
-the wxWS\_EX\_PROCESS\_UPDATE\_EVENTS flag in {\it window},
+the wxWS\_EX\_PROCESS\_UI\_UPDATES flag in {\it window},
 the time update events were last sent in idle time, and
 the update interval, to determine whether events should be sent to
 this window now. By default this will always return {\tt true} because