From 7475da7bda2a778663b568bf6c463839cbbef581 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 20 Jun 2005 19:43:42 +0000 Subject: [PATCH] Bug 93855: Changing values in detailed pane doesn't work the first time after the view is loaded. --- debug/org.eclipse.cdt.debug.ui/ChangeLog | 5 +++++ debug/org.eclipse.cdt.debug.ui/plugin.xml | 1 + .../ui/DetailsViewerConfiguration.java | 20 +++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/DetailsViewerConfiguration.java diff --git a/debug/org.eclipse.cdt.debug.ui/ChangeLog b/debug/org.eclipse.cdt.debug.ui/ChangeLog index 5c3ee2d9d0e..c0ffc618573 100644 --- a/debug/org.eclipse.cdt.debug.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog @@ -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 diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml index 99ce03a96fe..96be8272d88 100644 --- a/debug/org.eclipse.cdt.debug.ui/plugin.xml +++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml @@ -35,6 +35,7 @@ point="org.eclipse.debug.ui.debugModelPresentations"> diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/DetailsViewerConfiguration.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/DetailsViewerConfiguration.java new file mode 100644 index 00000000000..0179a36848a --- /dev/null +++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/DetailsViewerConfiguration.java @@ -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 { +}