Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.debug.ui.memory.floatingpoint;singleton:=true
Bundle-Version: 1.2.400.qualifier
Bundle-Version: 1.2.500.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.debug.core;bundle-version="[3.23.0,4)",
org.eclipse.debug.ui;bundle-version="[3.19.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.34.0,4.0.0)",
org.eclipse.ui;bundle-version="[3.207.200,4)",
org.eclipse.jface;bundle-version="[3.40.0,4.0.0)",
org.eclipse.search;bundle-version="[3.17.200,4)",
org.eclipse.cdt.debug.core;bundle-version="[9.0.0,10)"
Bundle-ActivationPolicy: lazy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2006, 2016 Wind River Systems Inc. and others.
* Copyright (c) 2006, 2026 Wind River Systems Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -11,6 +11,7 @@
* Contributors:
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
* Randy Rohrbach (Wind River Systems, Inc.) - Copied and modified to create the floating point plugin
* John Dallaway - Generate disabled menu item icon descriptor (#1485)
*******************************************************************************/

package org.eclipse.cdt.debug.ui.memory.floatingpoint;
Expand Down Expand Up @@ -1195,10 +1196,10 @@ public CopyAction(Rendering rendering, int clipboardType) {
fRendering = rendering;
setText(DebugUIMessages.CopyViewToClipboardAction_title);
setToolTipText(DebugUIMessages.CopyViewToClipboardAction_tooltip);
setImageDescriptor(
DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_COPY_VIEW_TO_CLIPBOARD));
setDisabledImageDescriptor(
DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_DLCL_COPY_VIEW_TO_CLIPBOARD));
ImageDescriptor descriptor = DebugPluginImages
.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_COPY_VIEW_TO_CLIPBOARD);
setImageDescriptor(descriptor);
setDisabledImageDescriptor(descriptor.asDisabledDescriptor());
}

@Override
Expand Down
Loading