diff options
| author | Dani Megert | 2012-04-23 12:12:11 +0000 |
|---|---|---|
| committer | Dani Megert | 2012-04-23 12:12:11 +0000 |
| commit | 31617390fa7852b1b801bd5bdfae26b9c66c37f4 (patch) | |
| tree | 467174ca47b4a88d40ba04f8e677e3543ff46d6e | |
| parent | 4df8e6fbb82fe6b789b6e537f3d9af7a0b860420 (diff) | |
| download | eclipse.jdt.ui-31617390fa7852b1b801bd5bdfae26b9c66c37f4.tar.gz eclipse.jdt.ui-31617390fa7852b1b801bd5bdfae26b9c66c37f4.tar.xz eclipse.jdt.ui-31617390fa7852b1b801bd5bdfae26b9c66c37f4.zip | |
Fixed bug 335132: [actions] Override / Implement dialog size / position
are not saved
| -rw-r--r-- | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java index 8497fd4565..bf94846916 100644 --- a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java +++ b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2011 IBM Corporation and others. + * Copyright (c) 2000, 2012 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -691,4 +691,14 @@ public class SourceActionDialog extends CheckedTreeSelectionDialog { protected IDialogSettings getDialogSettings() { return fSettings; } + + /* (non-Javadoc) + * @see org.eclipse.jface.dialogs.Dialog#getDialogBoundsSettings() + * @since 3.8 + */ + @Override + protected IDialogSettings getDialogBoundsSettings() { + return JavaPlugin.getDefault().getDialogSettingsSection("DialogBounds_" + getClass().getSimpleName()); //$NON-NLS-1$ + } + } |
