1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

The Registers view has been contibuted and moved to the Eclipse platform.

To enable updating set the default value of the auto-refresh flag of the registers to true.
Remove it when the "Refresh" and "Auto-Refresh" actions are contributed.
This commit is contained in:
Mikhail Khodjaiants 2004-03-31 23:05:05 +00:00
parent 4ad9d2c33e
commit fc5179e477
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2004-03-31 Mikhail Khodjaiants
The Registers view has been contibuted and moved to the Eclipse platform.
To enable updating set the default value of the auto-refresh flag of the registers to true.
Remove it when the "Refresh" and "Auto-Refresh" actions are contributed.
* CDebugCorePlugin.java
2004-03-17 Alain Magloire
Changes to get some performances. The array of

View file

@ -218,6 +218,7 @@ public class CDebugCorePlugin extends Plugin
public void startup() throws CoreException
{
super.startup();
initDefaultPreferences();
resetBreakpointsInstallCount();
setSessionManager( new SessionManager() );
}
@ -274,4 +275,10 @@ public class CDebugCorePlugin extends Plugin
{
return SourceUtils.getCommonSourceLocationsFromMemento( CDebugCorePlugin.getDefault().getPluginPreferences().getString( ICDebugConstants.PREF_SOURCE_LOCATIONS ) );
}
private void initDefaultPreferences()
{
// for now
CDebugCorePlugin.getDefault().getPluginPreferences().setDefault( ICDebugConstants.PREF_REGISTERS_AUTO_REFRESH, true );
}
}