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:
parent
83382d0514
commit
99f7af4dba
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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) )
|
||||
|
|
Loading…
Add table
Reference in a new issue