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

[160041] - Changed default number of frames to retrieve to 10.

This commit is contained in:
Pawel Piech 2008-06-24 20:02:56 +00:00
parent 00a5eca0ef
commit 86da81e859
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@ public interface IDsfDebugUIConstants {
/**
* Integer preference to control the maximum amount of stack frames to
* retrieve from the backend. Default value is 100.
* retrieve from the backend. Default value is 10.
* @see {@link #PREF_STACK_FRAME_LIMIT_ENABLE}
*/
public static final String PREF_STACK_FRAME_LIMIT = "stackFrameLimit"; //$NON-NLS-1$

View file

@ -56,7 +56,7 @@ public class PreferenceInitializer extends AbstractPreferenceInitializer {
/*
* Debug View
*/
prefs.setDefault(IDsfDebugUIConstants.PREF_STACK_FRAME_LIMIT, 100);
prefs.setDefault(IDsfDebugUIConstants.PREF_STACK_FRAME_LIMIT, 10);
prefs.setDefault(IDsfDebugUIConstants.PREF_STACK_FRAME_LIMIT_ENABLE, true);
}
}