Lines Matching refs:pErrorDesc
1276 void SmViewShell::ShowError( const SmErrorDesc *pErrorDesc ) in ShowError() argument
1281 if (pErrorDesc || 0 != (pErrorDesc = GetDoc()->GetParser().GetError(0)) ) in ShowError()
1283 SetStatusText( pErrorDesc->Text ); in ShowError()
1284 GetEditWindow()->MarkError( Point( pErrorDesc->pNode->GetColumn(), in ShowError()
1285 pErrorDesc->pNode->GetRow())); in ShowError()
1295 const SmErrorDesc *pErrorDesc = GetDoc()->GetParser().NextError(); in NextError() local
1297 if (pErrorDesc) in NextError()
1298 ShowError( pErrorDesc ); in NextError()
1307 const SmErrorDesc *pErrorDesc = GetDoc()->GetParser().PrevError(); in PrevError() local
1309 if (pErrorDesc) in PrevError()
1310 ShowError( pErrorDesc ); in PrevError()