mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-24 20:50:08 +01:00
⁉️ Not sure if the generated .rst stuff is intended to have
whitespace like this in it or not, so seperating this from the other
commits, so easy to revert if necessary.
10 lines
208 B
Python
10 lines
208 B
Python
|
|
class MyPropertyClass(wx.propgrid.DirProperty):
|
|
...
|
|
def DoGetValidator(self):
|
|
validator = MyValidator(...)
|
|
|
|
... prepare validator...
|
|
|
|
return validator
|