X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5267aefd85739afd26bd19bfba998005119db446..adf8418e3caafe5ece776cb08b33faa7c32264ba:/interface/wx/timer.h diff --git a/interface/wx/timer.h b/interface/wx/timer.h index 3960006bee..997422d447 100644 --- a/interface/wx/timer.h +++ b/interface/wx/timer.h @@ -92,6 +92,10 @@ public: used and SetOwner() wasn't called. Perform whatever action which is to be taken periodically here. + + Notice that throwing exceptions from this method is currently not + supported, use event-based timer handling approach if an exception can + be thrown while handling timer notifications. */ virtual void Notify(); @@ -131,7 +135,8 @@ public: /** @class wxTimerEvent - wxTimerEvent object is passed to the event handler of timer events. + wxTimerEvent object is passed to the event handler of timer events + (see wxTimer::SetOwner). For example: