From: bananeweizen Date: Fri, 10 Feb 2006 22:24:17 +0000 (+0000) Subject: make compilable in 3.2 latest integration build, removed reference to no longer exist... X-Git-Url: http://secure.phpeclipse.com make compilable in 3.2 latest integration build, removed reference to no longer existing helper class --- diff --git a/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/PHPEnvironmentTab2.java b/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/PHPEnvironmentTab2.java index 418077a..21f1307 100644 --- a/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/PHPEnvironmentTab2.java +++ b/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/PHPEnvironmentTab2.java @@ -24,7 +24,6 @@ import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; import org.eclipse.debug.core.ILaunchManager; import org.eclipse.debug.internal.ui.DebugPluginImages; import org.eclipse.debug.internal.ui.DebugUIPlugin; -import org.eclipse.debug.internal.ui.DialogSettingsHelper; import org.eclipse.debug.internal.ui.IDebugHelpContextIds; import org.eclipse.debug.internal.ui.MultipleInputDialog; import org.eclipse.debug.internal.ui.launchConfigurations.EnvironmentVariable; @@ -714,34 +713,6 @@ public class PHPEnvironmentTab2 extends AbstractLaunchConfigurationTab { protected String getDialogSettingsSectionName() { return IDebugUIConstants.PLUGIN_ID + ".ENVIRONMENT_TAB.NATIVE_ENVIROMENT_DIALOG"; //$NON-NLS-1$ } - - - /* (non-Javadoc) - * @see org.eclipse.jface.window.Window#getInitialLocation(org.eclipse.swt.graphics.Point) - */ - protected Point getInitialLocation(Point initialSize) { - Point initialLocation= DialogSettingsHelper.getInitialLocation(getDialogSettingsSectionName()); - if (initialLocation != null) { - return initialLocation; - } - return super.getInitialLocation(initialSize); - } - - /* (non-Javadoc) - * @see org.eclipse.jface.window.Window#getInitialSize() - */ - protected Point getInitialSize() { - Point size = super.getInitialSize(); - return DialogSettingsHelper.getInitialSize(getDialogSettingsSectionName(), size); - } - - /* (non-Javadoc) - * @see org.eclipse.jface.window.Window#close() - */ - public boolean close() { - DialogSettingsHelper.persistShellGeometry(getShell(), getDialogSettingsSectionName()); - return super.close(); - } } }