Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] remove warnings in mi.ui

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.mi.ui/ChangeLog,v
retrieving revision 1.5
diff -u -r1.5 ChangeLog
--- ChangeLog	24 Jan 2003 17:19:33 -0000	1.5
+++ ChangeLog	7 Feb 2003 03:43:46 -0000
@@ -1,3 +1,12 @@
+2003-02-06 Alain Magloire
+
+	* src/.../internal/ui/CygwinDebuggerPage.java (updateLaunchConfigurationDialog):
+	New method to increase visibility for inner classes.
+	(getShell): New method to increase visibility for inner classes.
+	(fGDBCommandText): Change scope to protected.
+	(fGDBInitText) Change scope to protected.
+	* src/.../internal/ui/GDBDebuggerPage.java: Ditto.
+
 2003-01-24 David Inglis
 
 	* src/.../internal/ui/CDebuggerPage.java (removed)
Index: src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java,v
retrieving revision 1.1
diff -u -r1.1 CygwinDebuggerPage.java
--- src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java	24 Jan 2003 17:19:33 -0000	1.1
+++ src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java	7 Feb 2003 03:43:47 -0000
@@ -22,12 +22,13 @@
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.FileDialog;
 import org.eclipse.swt.widgets.Label;
+import org.eclipse.swt.widgets.Shell;
 import org.eclipse.swt.widgets.Text;
 
 public class CygwinDebuggerPage extends AbstractLaunchConfigurationTab {
 
-	private Text fGDBCommandText;
-	private Text fGDBInitText;
+	protected Text fGDBCommandText;
+	protected Text fGDBInitText;
 	private Button fGDBButton;
 
 	public void createControl(Composite parent) {
@@ -182,4 +183,19 @@
 	public String getName() {
 		return "Cygwin GDB Debugger Options";
 	}
+	
+	/**
+	 * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
+	 */
+	protected void updateLaunchConfigurationDialog() {
+		super.updateLaunchConfigurationDialog();
+	}
+
+	/**
+	 * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getShell()
+	 */
+	protected Shell getShell() {
+		return super.getShell();
+	}
+
 }
Index: src/org/eclipse/cdt/debug/mi/internal/ui/GDBDebuggerPage.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBDebuggerPage.java,v
retrieving revision 1.1
diff -u -r1.1 GDBDebuggerPage.java
--- src/org/eclipse/cdt/debug/mi/internal/ui/GDBDebuggerPage.java	24 Jan 2003 17:19:33 -0000	1.1
+++ src/org/eclipse/cdt/debug/mi/internal/ui/GDBDebuggerPage.java	7 Feb 2003 03:43:47 -0000
@@ -22,12 +22,13 @@
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.FileDialog;
 import org.eclipse.swt.widgets.Label;
+import org.eclipse.swt.widgets.Shell;
 import org.eclipse.swt.widgets.Text;
 
 public class GDBDebuggerPage extends AbstractLaunchConfigurationTab {
 
-	private Text fGDBCommandText;
-	private Text fGDBInitText;
+	protected Text fGDBCommandText;
+	protected Text fGDBInitText;
 	private Button fAutoSoLibButton;
 	private Button fGDBButton;
 
@@ -195,4 +196,18 @@
 	public String getName() {
 		return "GDB Debugger Options";
 	}
+	/**
+	 * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getShell()
+	 */
+	protected Shell getShell() {
+		return super.getShell();
+	}
+
+	/**
+	 * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
+	 */
+	protected void updateLaunchConfigurationDialog() {
+		super.updateLaunchConfigurationDialog();
+	}
+
 }



Back to the top