SVN commit 1198295 by ganeshp: Fixing a crash in Hide-Changes when dealing with a table containing either a deleted-row or a deleted-column M +1 -1 ShowChangesCommand.cpp --- branches/work/koffice-change-tracking/plugins/textshape/commands/ShowChangesCommand.cpp #1198294:1198295 @@ -172,7 +172,7 @@ qSort(elementVector.begin(), elementVector.end(), isPositionLessThan); foreach(KoChangeTrackerElement *element, elementVector) { - if (element->isValid()) { + if (element->isValid() && element->getDeleteChangeMarker()) { QTextCursor caret(element->getDeleteChangeMarker()->document()); QTextCharFormat f; int deletePosition = element->getDeleteChangeMarker()->position() + 1 - numDeletedChars;