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

Bugzilla 251939

This commit is contained in:
Randy Rohrbach 2008-10-23 21:48:22 +00:00
parent 93fcf7fbd2
commit 91d27abefb

View file

@ -13,7 +13,6 @@ package org.eclipse.dd.dsf.debug.internal.ui.viewmodel.detailsupport;
import org.eclipse.dd.dsf.debug.internal.ui.DsfDebugUIPlugin;
import org.eclipse.dd.dsf.debug.ui.IDsfDebugUIConstants;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.dialogs.IInputValidator;
@ -130,7 +129,7 @@ public class DetailPaneMaxLengthDialog extends TrayDialog {
protected void okPressed() {
String text = getValue();
try {
DsfDebugUIPlugin.getDefault().getPreferenceStore().setValue(IDebugUIConstants.PREF_MAX_DETAIL_LENGTH, Integer.parseInt(text));
DsfDebugUIPlugin.getDefault().getPreferenceStore().setValue(IDsfDebugUIConstants.PREF_MAX_DETAIL_LENGTH, Integer.parseInt(text));
}
catch (NumberFormatException e) {
DsfDebugUIPlugin.log(e);