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

Bug 93855: Changing values in detailed pane doesn't work the first time after the view is loaded.

This commit is contained in:
Mikhail Khodjaiants 2005-06-20 19:43:42 +00:00
parent 2f3a82c13c
commit 7475da7bda
3 changed files with 26 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-06-20 Mikhail Khodjaiants
Bug 93855: Changing values in detailed pane doesn't work the first time after the view is loaded.
+ DetailsViewerConfiguration.java
* plugin.xml
2005-06-17 Mikhail Khodjaiants
Bug 99217: NPE thrown when fetching deffered children.
* CDebugModelPresentation.java

View file

@ -35,6 +35,7 @@
point="org.eclipse.debug.ui.debugModelPresentations">
<debugModelPresentation
class="org.eclipse.cdt.debug.internal.ui.CDebugModelPresentation"
detailsViewerConfiguration="org.eclipse.cdt.debug.internal.ui.DetailsViewerConfiguration"
id="org.eclipse.cdt.debug.core">
</debugModelPresentation>
</extension>

View file

@ -0,0 +1,20 @@
/**********************************************************************
* Copyright (c) 2004 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* QNX Software Systems - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.debug.internal.ui;
import org.eclipse.jface.text.source.SourceViewerConfiguration;
/**
* The source viewer configuration used in the Details pane of the variables,
* registers and expressions views.
*/
public class DetailsViewerConfiguration extends SourceViewerConfiguration {
}