[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[cdt-patch] remove warnings in cdt.launch
|
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/ChangeLog,v
retrieving revision 1.22
diff -u -r1.22 ChangeLog
--- ChangeLog 6 Feb 2003 20:37:45 -0000 1.22
+++ ChangeLog 7 Feb 2003 03:43:17 -0000
@@ -1,3 +1,17 @@
+2003-02-06 Alain Magloire
+
+ * src/.../launch/internal/ui/WorkingDirectoryBlock.java (geLaunchConfiguration):
+ (updateLaunchConfigurationDialog): New method to change the scope for inner classes.
+ * src/.../launch/ui/CArgumentsTab.java (updateLaunchConfigurationDialog):
+ New method changing the scope for inner classes.
+ * src/.../launch/ui/CDebuggerTab.java (updateLaunchConfigurationDialog):
+ New method changing the scope for inner classes.
+ * src/.../launch/ui/CMainTab.java (updateLaunchConfigurationDialog):
+ New method changing the scope for inner classes.
+ * src/.../launch/ui/CorefileDebuggerTab.java (handleDebuggerChange):
+ New method changing the scope for inner classes.
+
+
2003-02-06 David Inglis
* src/.../launch/internal/CApplicationLaunchShortcut.java
* src/.../launch/ui/CMainTab.java
Index: src/org/eclipse/cdt/launch/internal/ui/WorkingDirectoryBlock.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/WorkingDirectoryBlock.java,v
retrieving revision 1.3
diff -u -r1.3 WorkingDirectoryBlock.java
--- src/org/eclipse/cdt/launch/internal/ui/WorkingDirectoryBlock.java 15 Jan 2003 20:04:55 -0000 1.3
+++ src/org/eclipse/cdt/launch/internal/ui/WorkingDirectoryBlock.java 7 Feb 2003 03:43:21 -0000
@@ -406,5 +406,12 @@
return fLaunchConfiguration;
}
+ /**
+ * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
+ */
+ protected void updateLaunchConfigurationDialog() {
+ super.updateLaunchConfigurationDialog();
+ }
+
}
Index: src/org/eclipse/cdt/launch/ui/CArgumentsTab.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CArgumentsTab.java,v
retrieving revision 1.2
diff -u -r1.2 CArgumentsTab.java
--- src/org/eclipse/cdt/launch/ui/CArgumentsTab.java 23 Sep 2002 17:16:19 -0000 1.2
+++ src/org/eclipse/cdt/launch/ui/CArgumentsTab.java 7 Feb 2003 03:43:20 -0000
@@ -172,4 +172,11 @@
return LaunchImages.get(LaunchImages.IMG_VIEW_ARGUMENTS_TAB);
}
+ /**
+ * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
+ */
+ protected void updateLaunchConfigurationDialog() {
+ super.updateLaunchConfigurationDialog();
+ }
+
}
Index: src/org/eclipse/cdt/launch/ui/CDebuggerTab.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CDebuggerTab.java,v
retrieving revision 1.20
diff -u -r1.20 CDebuggerTab.java
--- src/org/eclipse/cdt/launch/ui/CDebuggerTab.java 16 Jan 2003 20:23:16 -0000 1.20
+++ src/org/eclipse/cdt/launch/ui/CDebuggerTab.java 7 Feb 2003 03:43:18 -0000
@@ -282,4 +282,11 @@
public Image getImage() {
return LaunchImages.get(LaunchImages.IMG_VIEW_DEBUGGER_TAB);
}
+ /**
+ * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
+ */
+ protected void updateLaunchConfigurationDialog() {
+ super.updateLaunchConfigurationDialog();
+ }
+
}
Index: src/org/eclipse/cdt/launch/ui/CMainTab.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CMainTab.java,v
retrieving revision 1.14
diff -u -r1.14 CMainTab.java
--- src/org/eclipse/cdt/launch/ui/CMainTab.java 6 Feb 2003 20:37:45 -0000 1.14
+++ src/org/eclipse/cdt/launch/ui/CMainTab.java 7 Feb 2003 03:43:19 -0000
@@ -399,4 +399,11 @@
return LaunchImages.get(LaunchImages.IMG_VIEW_MAIN_TAB);
}
+ /**
+ * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
+ */
+ protected void updateLaunchConfigurationDialog() {
+ super.updateLaunchConfigurationDialog();
+ }
+
}
Index: src/org/eclipse/cdt/launch/ui/CorefileDebuggerTab.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CorefileDebuggerTab.java,v
retrieving revision 1.8
diff -u -r1.8 CorefileDebuggerTab.java
--- src/org/eclipse/cdt/launch/ui/CorefileDebuggerTab.java 16 Jan 2003 20:28:47 -0000 1.8
+++ src/org/eclipse/cdt/launch/ui/CorefileDebuggerTab.java 7 Feb 2003 03:43:18 -0000
@@ -181,4 +181,11 @@
return "Debugger";
}
+ /**
+ * @see org.eclipse.cdt.launch.internal.ui.AbstractCDebuggerTab#handleDebuggerChanged()
+ */
+ protected void handleDebuggerChanged() {
+ super.handleDebuggerChanged();
+ }
+
}