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:
parent
2f3a82c13c
commit
7475da7bda
3 changed files with 26 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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 {
|
||||
}
|
Loading…
Add table
Reference in a new issue