[Pydev-cvs] org.python.pydev.debug/src/org/python/pydev/debug/ui PythonTabGroup.java,1.2,1.3 PythonM
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-07-02 02:26:10
|
Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14307/src/org/python/pydev/debug/ui Modified Files: PythonTabGroup.java PythonMainTab.java Log Message: 3.0 port Index: PythonTabGroup.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/PythonTabGroup.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PythonTabGroup.java 10 Jan 2004 03:13:18 -0000 1.2 --- PythonTabGroup.java 2 Jul 2004 02:26:00 -0000 1.3 *************** *** 8,15 **** import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup; import org.eclipse.debug.ui.CommonTab; ! // E3 import org.eclipse.debug.ui.EnvironmentTab; import org.eclipse.debug.ui.ILaunchConfigurationDialog; import org.eclipse.debug.ui.ILaunchConfigurationTab; ! // E3 import org.eclipse.debug.ui.RefreshTab; /** --- 8,15 ---- import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup; import org.eclipse.debug.ui.CommonTab; ! import org.eclipse.debug.ui.EnvironmentTab; import org.eclipse.debug.ui.ILaunchConfigurationDialog; import org.eclipse.debug.ui.ILaunchConfigurationTab; ! import org.eclipse.debug.ui.RefreshTab; /** *************** *** 23,28 **** ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { new PythonMainTab(), ! // E3 new RefreshTab(), ! // E3 new EnvironmentTab(), new CommonTab() }; setTabs(tabs); --- 23,28 ---- ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { new PythonMainTab(), ! new RefreshTab(), ! new EnvironmentTab(), new CommonTab() }; setTabs(tabs); Index: PythonMainTab.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/PythonMainTab.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PythonMainTab.java 15 Apr 2004 23:24:49 -0000 1.5 --- PythonMainTab.java 2 Jul 2004 02:26:00 -0000 1.6 *************** *** 23,26 **** --- 23,27 ---- import org.eclipse.swt.widgets.*; import org.python.pydev.debug.core.*; + import org.python.pydev.plugin.PydevPlugin; import org.python.pydev.plugin.PydevPrefs; import org.python.pydev.ui.InterpreterEditor; *************** *** 156,160 **** try { URL url = new URL( ! PydevDebugPlugin.getDefault().getDescriptor().getInstallURL(), Constants.MAIN_ICON); desc = ImageDescriptor.createFromURL(url); --- 157,161 ---- try { URL url = new URL( ! PydevPlugin.getDefault().getBundle().getEntry("/"), Constants.MAIN_ICON); desc = ImageDescriptor.createFromURL(url); *************** *** 177,181 **** * refresh in reverse (updateMessage, then buttons) * This does not work well (Message uses ol - * E3 fixes this problem */ protected void updateLaunchConfigurationDialog() { --- 178,181 ---- *************** *** 183,187 **** getLaunchConfigurationDialog().updateButtons(); getLaunchConfigurationDialog().updateMessage(); ! getLaunchConfigurationDialog().updateButtons(); } } --- 183,187 ---- getLaunchConfigurationDialog().updateButtons(); getLaunchConfigurationDialog().updateMessage(); ! // getLaunchConfigurationDialog().updateButtons(); } } |