summaryrefslogtreecommitdiff
path: root/basctl/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-08-06 12:13:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2022-08-06 15:25:52 +0200
commitde5135060d01b650b7258c02e847e916ae9541fd (patch)
tree061bba49be625303726201a774f77a37f5126e0e /basctl/source
parent71ce0e354437db3086d6d746b0e9edbc693ddcca (diff)
cid#1507764 Unintended comparison to logical negation
missing - from -> Change-Id: Ieca42cf3fd3e1c10186ba57dd422f3e4ddf9e20a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137898 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basctl/source')
-rw-r--r--basctl/source/basicide/bastypes.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx
index 1790c4b5444f..5411b73336bb 100644
--- a/basctl/source/basicide/bastypes.cxx
+++ b/basctl/source/basicide/bastypes.cxx
@@ -72,7 +72,7 @@ BaseWindow::~BaseWindow()
void BaseWindow::dispose()
{
- if (pShellVScrollBar && !pShellVScrollBar>isDisposed())
+ if (pShellVScrollBar && !pShellVScrollBar->isDisposed())
pShellVScrollBar->SetScrollHdl( Link<weld::Scrollbar&,void>() );
if (pShellHScrollBar && !pShellHScrollBar->isDisposed())
pShellHScrollBar->SetScrollHdl( Link<weld::Scrollbar&,void>() );