Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-04-01 06:05:33 +0000
committerspingel2008-04-01 06:05:33 +0000
commit88649c889d5fdf5d16c3f55a1dfa6865dc99823c (patch)
tree94306847ad57e6df11acb4cf5a9bd8d8522e4649 /org.eclipse.mylyn.help.ui
parentde097120075206abaf422697ced95d4eda8a8e8d (diff)
downloadorg.eclipse.mylyn.tasks-88649c889d5fdf5d16c3f55a1dfa6865dc99823c.tar.gz
org.eclipse.mylyn.tasks-88649c889d5fdf5d16c3f55a1dfa6865dc99823c.tar.xz
org.eclipse.mylyn.tasks-88649c889d5fdf5d16c3f55a1dfa6865dc99823c.zip
NEW - bug 225040: mark internal packages as x-internal
https://bugs.eclipse.org/bugs/show_bug.cgi?id=225040
Diffstat (limited to 'org.eclipse.mylyn.help.ui')
-rw-r--r--org.eclipse.mylyn.help.ui/META-INF/MANIFEST.MF4
-rw-r--r--org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/dialogs/UiLegendDialog.java2
2 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.help.ui/META-INF/MANIFEST.MF b/org.eclipse.mylyn.help.ui/META-INF/MANIFEST.MF
index 85f5b1ff0..b92608032 100644
--- a/org.eclipse.mylyn.help.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.help.ui/META-INF/MANIFEST.MF
@@ -10,6 +10,6 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.mylyn.tasks.core;bundle-version="[3.0.0,4.0.0)",
org.eclipse.mylyn.tasks.ui;bundle-version="[3.0.0,4.0.0)",
org.eclipse.core.runtime
-Export-Package: org.eclipse.mylyn.internal.help.ui.actions,
- org.eclipse.mylyn.internal.help.ui.dialogs
+Export-Package: org.eclipse.mylyn.internal.help.ui.actions;x-internal:=true,
+ org.eclipse.mylyn.internal.help.ui.dialogs;x-internal:=true
Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/dialogs/UiLegendDialog.java b/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/dialogs/UiLegendDialog.java
index dd38bb75b..aa71673c5 100644
--- a/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/dialogs/UiLegendDialog.java
+++ b/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/dialogs/UiLegendDialog.java
@@ -58,6 +58,8 @@ public class UiLegendDialog extends PopupDialog {
private final IThemeManager themeManager = PlatformUI.getWorkbench().getThemeManager();
+ // TODO e3.4 move to new api
+ @SuppressWarnings("deprecation")
public UiLegendDialog(Shell parent) {
super(parent, PopupDialog.INFOPOPUP_SHELLSTYLE | SWT.ON_TOP, false, false, false, false, null, null);
}

Back to the top