Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorMarc Khouzam2014-10-06 13:06:26 +0000
committerMarc Khouzam2014-10-06 13:06:26 +0000
commite7cb240780fb2a5ca0748f58e18fd6b27673e531 (patch)
tree35268fc738ae90e508ae35a0c79132c71ad18752 /dsf
parent223df2e0727ed813384c88dff42d3f98af7a8bbf (diff)
downloadorg.eclipse.cdt-e7cb240780fb2a5ca0748f58e18fd6b27673e531.tar.gz
org.eclipse.cdt-e7cb240780fb2a5ca0748f58e18fd6b27673e531.tar.xz
org.eclipse.cdt-e7cb240780fb2a5ca0748f58e18fd6b27673e531.zip
Cosmetics
Change-Id: I986bf6cc52c09563a1443dadfabdf50db8ca3b40 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/numberformat/NumberFormatsContribution.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/numberformat/NumberFormatsContribution.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/numberformat/NumberFormatsContribution.java
index 397efbc7304..db204b4d55f 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/numberformat/NumberFormatsContribution.java
+++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/numberformat/NumberFormatsContribution.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2011 Wind River Systems and others.
+ * Copyright (c) 2008, 2014 Wind River Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -68,7 +68,7 @@ public class NumberFormatsContribution extends CompoundContributionItem implemen
protected IServiceLocator fServiceLocator;
- private static IContributionItem[] NO_BREAKPOINT_TYPES_CONTRIBUTION_ITEMS = new IContributionItem[] {
+ private static IContributionItem[] NO_FORMAT_CONTRIBUTION_ITEMS = new IContributionItem[] {
new ContributionItem() {
@Override
public void fill(Menu menu, int index) {
@@ -90,7 +90,7 @@ public class NumberFormatsContribution extends CompoundContributionItem implemen
// If no part or selection, disable all.
if (provider == null) {
- return NO_BREAKPOINT_TYPES_CONTRIBUTION_ITEMS;
+ return NO_FORMAT_CONTRIBUTION_ITEMS;
}
IPresentationContext context = provider.getPresentationContext();
@@ -109,7 +109,7 @@ public class NumberFormatsContribution extends CompoundContributionItem implemen
}
if ( actions.isEmpty() ) {
- return NO_BREAKPOINT_TYPES_CONTRIBUTION_ITEMS;
+ return NO_FORMAT_CONTRIBUTION_ITEMS;
}
IContributionItem[] items = new IContributionItem[actions.size()];

Back to the top