diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-18 13:43:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-07-18 17:16:56 +0200 |
commit | 53352706de3152fe57309a3e2b2ec793949b4413 (patch) | |
tree | 996b14398db1492804f1d989d5d69d76c87a06b7 /wizards | |
parent | 84ee78fce5e980d3593fbbbe49005f35c5b3e2d0 (diff) |
Related: rhbz#1602589 null_check 'guiRow'
Change-Id: I0c93e6a721646363e5b71ec0e9db6199e7cce006
Reviewed-on: https://gerrit.libreoffice.org/57641
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/agenda/TopicsControl.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/TopicsControl.py b/wizards/com/sun/star/wizards/agenda/TopicsControl.py index e345ddcd11b0..6b3561003b4c 100644 --- a/wizards/com/sun/star/wizards/agenda/TopicsControl.py +++ b/wizards/com/sun/star/wizards/agenda/TopicsControl.py @@ -458,8 +458,9 @@ class TopicsControl(ControlScroller): def rowDown(self, guiRow=None, control=None): try: - if guiRow is None and control is None: + if guiRow is None: guiRow = self.lastFocusRow - self.nscrollvalue + if control is None: control = self.lastFocusControl # only perform if this is not the last row. actuallRow = guiRow + self.nscrollvalue @@ -490,8 +491,9 @@ class TopicsControl(ControlScroller): def rowUp(self, guiRow=None, control=None): try: - if guiRow is None and control is None: + if guiRow is None: guiRow = self.lastFocusRow - self.nscrollvalue + if control is None: control = self.lastFocusControl # only perform if this is not the first row actuallRow = guiRow + self.nscrollvalue |