Code generation
Igor Korot <[email protected]> Wed, 29 Apr 2026 17:27:47 -0700
| Newsgroups | gmane.comp.python.wxglade |
|---|---|
| Message-ID | <CA+FnnTyjo3G-8-kg5=ivLbQYQKCwujm_2BykeVvxiubR5SJFLQ@mail.gmail.com> |
Hi, I noticed that generating the code for disabled control makes it:: control->Enable( 0 ); I think it would be more appropriate to do: control->Enable( false ); in C++. I'm not sure about other languages... Thank you.