Bug fix B2014-075, the spell checker would crash PROMS when it tried to process a RO Table. We needed to skip RO tables during Spell Checking, since ROs can only be modified in the RO Editor

This commit is contained in:
John Jenko 2014-06-03 16:07:01 +00:00
parent b3abf86b9f
commit eb6a6f40a5

View File

@ -974,6 +974,7 @@ namespace Volian.Controls.Library
} }
public override bool SpellCheckNext() public override bool SpellCheckNext()
{ {
if (MyFlexGrid.IsRoTable) return true; // skip RO Tables
int r = MyFlexGrid.Row; int r = MyFlexGrid.Row;
int c = MyFlexGrid.Col; int c = MyFlexGrid.Col;
int w = MyFlexGrid.Cols.Count; int w = MyFlexGrid.Cols.Count;