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

Removed the 'Modified Value Color' preference.

This commit is contained in:
Mikhail Khodjaiants 2002-10-31 23:29:27 +00:00
parent a429e30634
commit 2d39f23eee
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2002-10-31 Mikhail Khodjaiants
Removed the 'Modified Value Color' field from the 'Debug/Memory Views'
preference page.
* MemoryViewPreferencePage.java
2002-10-30 Mikhail Khodjaiants
Implementing the 'Refresh Memory' action.
* RefreshMemoryAction.java

View file

@ -85,7 +85,7 @@ public class MemoryViewPreferencePage extends FieldEditorPreferencePage
ColorFieldEditor background = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_BACKGROUND_RGB, "Background Color:", getFieldEditorParent() );
ColorFieldEditor address = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_ADDRESS_RGB, "Address Color:", getFieldEditorParent() );
ColorFieldEditor changed = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_CHANGED_RGB, "Changed Value Color:", getFieldEditorParent() );
ColorFieldEditor dirty = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_DIRTY_RGB, "Modified Value Color:", getFieldEditorParent() );
// ColorFieldEditor dirty = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_DIRTY_RGB, "Modified Value Color:", getFieldEditorParent() );
FontFieldEditor font = new FontFieldEditor( ICDebugPreferenceConstants.MEMORY_FONT, "Font:", getFieldEditorParent() );
@ -93,7 +93,7 @@ public class MemoryViewPreferencePage extends FieldEditorPreferencePage
addField( background );
addField( address );
addField( changed );
addField( dirty );
// addField( dirty );
addField( font );
StringFieldEditor paddingChar = new StringFieldEditor( ICDebugPreferenceConstants.PREF_MEMORY_PADDING_CHAR, "Padding Character:", 1, getFieldEditorParent() );