Add some missing wx. prefixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25324 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-01-22 23:27:39 +00:00
parent 305ac48f0a
commit 2461468b51

View File

@ -967,7 +967,7 @@ class TimeCtrl(MaskedTextCtrl):
causes control to behave as if up arrow was pressed.
"""
dbg('TimeCtrl::OnSpinUp', indent=1)
self.__OnSpin(WXK_UP)
self.__OnSpin(wx.WXK_UP)
keep_processing = False
dbg(indent=0)
return keep_processing
@ -979,7 +979,7 @@ class TimeCtrl(MaskedTextCtrl):
causes control to behave as if down arrow was pressed.
"""
dbg('TimeCtrl::OnSpinDown', indent=1)
self.__OnSpin(WXK_DOWN)
self.__OnSpin(wx.WXK_DOWN)
keep_processing = False
dbg(indent=0)
return keep_processing