From 5a2e09989a4b9746a56f15fe7499067a4327fbae Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 14 Jun 2015 13:35:37 +0200 Subject: cppcheck:redundantCondition Change-Id: Ib8b6342d1da526df6104125ded546b3f053c448b --- basctl/source/basicide/basidesh.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basctl') diff --git a/basctl/source/basicide/basidesh.cxx b/basctl/source/basicide/basidesh.cxx index b31d18c2607c..2501cdb55159 100644 --- a/basctl/source/basicide/basidesh.cxx +++ b/basctl/source/basicide/basidesh.cxx @@ -831,7 +831,7 @@ void Shell::RemoveWindow( BaseWindow* pWindow_, bool bDestroy, bool bAllowChange if ( pWindow_->GetDocument().isInVBAMode() ) { SbModule* pMod = StarBASIC::GetActiveModule(); - if ( !pMod || !pMod->GetName().equals(pWindow_->GetName())) + if ( !pMod || !pMod->GetName().equals(pWindow_->GetName()) ) { bStop = false; } -- cgit