1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00
This commit is contained in:
Mikhail Khodjaiants 2006-01-06 20:33:35 +00:00
parent 3843730ec0
commit d87a35dc00
3 changed files with 6 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2006-01-06 Mikhail Khodjaiants
Cleanup.
* CArgumentsTab.java
* CMainTab.java
2005-12-27 Mikhail Khodjaiants 2005-12-27 Mikhail Khodjaiants
Cleanup. Cleanup.
* LaunchUIPlugin.java * LaunchUIPlugin.java

View file

@ -117,7 +117,7 @@ public class CArgumentsTab extends CLaunchConfigurationTab {
* field. Prompt the user for a variable and enter the result * field. Prompt the user for a variable and enter the result
* in the given field. * in the given field.
*/ */
private void handleVariablesButtonSelected(Text textField) { protected void handleVariablesButtonSelected(Text textField) {
String variable = getVariable(); String variable = getVariable();
if (variable != null) { if (variable != null) {
textField.append(variable); textField.append(variable);

View file

@ -12,7 +12,6 @@ package org.eclipse.cdt.launch.ui;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import org.eclipse.cdt.core.CCorePlugin; import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.core.IBinaryParser; import org.eclipse.cdt.core.IBinaryParser;
import org.eclipse.cdt.core.ICDescriptor; import org.eclipse.cdt.core.ICDescriptor;
@ -24,7 +23,6 @@ import org.eclipse.cdt.core.model.IBinary;
import org.eclipse.cdt.core.model.ICElement; import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.core.model.ICProject; import org.eclipse.cdt.core.model.ICProject;
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants; import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
import org.eclipse.cdt.internal.ui.viewsupport.CElementImageProvider;
import org.eclipse.cdt.launch.internal.ui.LaunchImages; import org.eclipse.cdt.launch.internal.ui.LaunchImages;
import org.eclipse.cdt.launch.internal.ui.LaunchMessages; import org.eclipse.cdt.launch.internal.ui.LaunchMessages;
import org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin; import org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin;
@ -298,8 +296,6 @@ public class CMainTab extends CLaunchConfigurationTab {
ILabelProvider programLabelProvider = new CElementLabelProvider() { ILabelProvider programLabelProvider = new CElementLabelProvider() {
CElementImageProvider imageProvider = new CElementImageProvider();
public String getText(Object element) { public String getText(Object element) {
if (element instanceof IBinary) { if (element instanceof IBinary) {
IBinary bin = (IBinary)element; IBinary bin = (IBinary)element;