Skip to content

Commit 2c7fc91

Browse files
author
stephanie
committed
fix typo #201
1 parent b2e866e commit 2c7fc91

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

odmtools/view/clsGapFill.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def __init__( self, parent ):
2929
self.lblGap.Wrap( -1 )
3030
bsGap.Add( self.lblGap, 0, wx.ALL, 5 )
3131

32-
self.txtGap1 = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 )
33-
bsGap.Add( self.txtGap1, 0, wx.ALL, 5 )
32+
self.txtGap = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 )
33+
bsGap.Add( self.txtGap, 0, wx.ALL, 5 )
3434

3535
cbGapChoices = [ u"second", u"minute", u"hour", u"days", u"week", u"month", u"day", u"year", wx.EmptyString, wx.EmptyString, wx.EmptyString ]
3636
self.cbGap = wx.ComboBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, cbGapChoices, 0 )
@@ -46,8 +46,8 @@ def __init__( self, parent ):
4646
self.lblFill.Wrap( -1 )
4747
bsFill.Add( self.lblFill, 0, wx.ALL, 5 )
4848

49-
self.txtGap = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 )
50-
bsFill.Add( self.txtGap, 0, wx.ALL, 5 )
49+
self.txtFill = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 )
50+
bsFill.Add( self.txtFill, 0, wx.ALL, 5 )
5151

5252
cbFillChoices = [ u"second", u"minute", u"hour", u"day", u"week", u"month", u"year" ]
5353
self.cbFill = wx.ComboBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, cbFillChoices, 0 )

0 commit comments

Comments
 (0)