Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2010-04-30 04:51:43 +0000
committerAndrew Gvozdev2010-04-30 04:51:43 +0000
commitfec0fa3fad4c42f6b3bdb75b22dec6f53a6d5b3e (patch)
tree5c1649779a61edfe0e2f628c561a46766d0071fc /build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part
parentc129e2c2b1fde8d2f70d1e7f8e4ea06dc7f566f5 (diff)
downloadorg.eclipse.cdt-fec0fa3fad4c42f6b3bdb75b22dec6f53a6d5b3e.tar.gz
org.eclipse.cdt-fec0fa3fad4c42f6b3bdb75b22dec6f53a6d5b3e.tar.xz
org.eclipse.cdt-fec0fa3fad4c42f6b3bdb75b22dec6f53a6d5b3e.zip
compilation warnings
Diffstat (limited to 'build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part')
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part/CheckboxTablePart.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part/CheckboxTablePart.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part/CheckboxTablePart.java
index a85a1c918b6..190b27b523b 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part/CheckboxTablePart.java
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/part/CheckboxTablePart.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation 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
@@ -23,7 +23,6 @@ import org.eclipse.swt.widgets.Composite;
/**
* @version 1.0
- * @author
*/
public class CheckboxTablePart extends StructuredViewerPart {
public CheckboxTablePart(String[] buttonLabels) {
@@ -33,6 +32,7 @@ public class CheckboxTablePart extends StructuredViewerPart {
/*
* @see StructuredViewerPart#createStructuredViewer(Composite, FormWidgetFactory)
*/
+ @Override
protected StructuredViewer createStructuredViewer(Composite parent, int style) {
style |= SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER;
CheckboxTableViewer tableViewer = CheckboxTableViewer.newCheckList(parent, style);
@@ -56,6 +56,7 @@ public class CheckboxTablePart extends StructuredViewerPart {
/*
* @see SharedPartWithButtons#buttonSelected(int)
*/
+ @Override
protected void buttonSelected(Button button, int index) {
}

Back to the top