- Remark that we probably don't need to send DM_SETDEFID as we don't use
- ::IsDialogMessage() (which relies on it) any longer but OTOH it probably
- doesn't hurt neither.
+ NB: all this is quite complicated by now and the worst is that normally
+ it shouldn't be necessary at all as for the normal Windows programs
+ DefWindowProc() and IsDialogMessage() take care of all this
+ automatically -- however in wxWindows programs this doesn't work for
+ nested hierarchies (i.e. a notebook inside a notebook) for unknown
+ reason and so we have to reproduce all this code ourselves. It would be
+ very nice if we could avoid doing it.