diff --git a/debug/org.eclipse.cdt.debug.ui/ChangeLog b/debug/org.eclipse.cdt.debug.ui/ChangeLog index 669bc45dec5..ff1988793fb 100644 --- a/debug/org.eclipse.cdt.debug.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog @@ -1,3 +1,7 @@ +2003-11-03 Mikhail Khodjaiants + Fix for PR 45957: Memory view: last column does not show updates. + * MemoryPresentation.java + 2003-09-30 Mikhail Khodjaiants Fix for PR 39737: Tooltip in debug mode over long strings is not handled properly. Added an internal constant to limit the hover text size. diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/memory/MemoryPresentation.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/memory/MemoryPresentation.java index c54f5f57322..d6bb6fd5f83 100644 --- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/memory/MemoryPresentation.java +++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/memory/MemoryPresentation.java @@ -305,7 +305,7 @@ public class MemoryPresentation if ( address.longValue() >= rows[i].getAddress() && address.longValue() < rows[i].getAddress() + (wordSize * numberOfColumns) ) { - for ( int j = 1; j < numberOfColumns; ++j ) + for ( int j = 1; j <= numberOfColumns; ++j ) { if ( address.longValue() >= rows[i].getAddress() + ((j - 1) * wordSize) && address.longValue() < rows[i].getAddress() + (j * wordSize) )