the if is useless here--both branches are same

This commit is contained in:
David Tardon 2011-04-28 07:28:53 +02:00
parent aa90dcca93
commit e49fc29521

View file

@ -257,14 +257,7 @@ sal_uInt16 MyBasic::BreakHdl()
pWin->Highlight( GetLine(), GetCol1(), GetCol2() );
}
if( IsBreak() ) // If Breakpoint (or "Run to Cursor")
{
return aBasicApp.pFrame->BreakHandler();
}
else
{
return aBasicApp.pFrame->BreakHandler();
}
return aBasicApp.pFrame->BreakHandler();
}
/***************************************************************************