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:
parent
a429e30634
commit
2d39f23eee
2 changed files with 7 additions and 2 deletions
|
@ -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
|
2002-10-30 Mikhail Khodjaiants
|
||||||
Implementing the 'Refresh Memory' action.
|
Implementing the 'Refresh Memory' action.
|
||||||
* RefreshMemoryAction.java
|
* RefreshMemoryAction.java
|
||||||
|
|
|
@ -85,7 +85,7 @@ public class MemoryViewPreferencePage extends FieldEditorPreferencePage
|
||||||
ColorFieldEditor background = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_BACKGROUND_RGB, "Background Color:", getFieldEditorParent() );
|
ColorFieldEditor background = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_BACKGROUND_RGB, "Background Color:", getFieldEditorParent() );
|
||||||
ColorFieldEditor address = new ColorFieldEditor( ICDebugPreferenceConstants.MEMORY_ADDRESS_RGB, "Address 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 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() );
|
FontFieldEditor font = new FontFieldEditor( ICDebugPreferenceConstants.MEMORY_FONT, "Font:", getFieldEditorParent() );
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ public class MemoryViewPreferencePage extends FieldEditorPreferencePage
|
||||||
addField( background );
|
addField( background );
|
||||||
addField( address );
|
addField( address );
|
||||||
addField( changed );
|
addField( changed );
|
||||||
addField( dirty );
|
// addField( dirty );
|
||||||
addField( font );
|
addField( font );
|
||||||
|
|
||||||
StringFieldEditor paddingChar = new StringFieldEditor( ICDebugPreferenceConstants.PREF_MEMORY_PADDING_CHAR, "Padding Character:", 1, getFieldEditorParent() );
|
StringFieldEditor paddingChar = new StringFieldEditor( ICDebugPreferenceConstants.PREF_MEMORY_PADDING_CHAR, "Padding Character:", 1, getFieldEditorParent() );
|
||||||
|
|
Loading…
Add table
Reference in a new issue