basctl/source/basicide/bastypes.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit de5135060d01b650b7258c02e847e916ae9541fd
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Aug 6 12:13:29 2022 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Sat Aug 6 15:25:52 2022 +0200

    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 <caol...@redhat.com>

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>() );

Reply via email to