1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for PR 45957: Memory view: last column does not show updates.

This commit is contained in:
Mikhail Khodjaiants 2003-11-03 18:54:24 +00:00
parent 83382d0514
commit 99f7af4dba
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-11-03 Mikhail Khodjaiants
Fix for PR 45957: Memory view: last column does not show updates.
* MemoryPresentation.java
2003-10-31 Mikhail Khodjaiants
Applied the changes made to the corresponding classes of 'org.eclipse.debug.ui'.
* AbstractDebugActionDelegate.java

View file

@ -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) )