Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Upton IV2009-02-06 02:23:31 +0000
committerFrancis Upton IV2009-02-06 02:23:31 +0000
commit520fcd0e42b75800243cc5f27ae6d2f3105b08d5 (patch)
tree813cd994710193f09434909ba3cf248858e987b9 /bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
parentf25e6d9d634f5d5412441eeedbcc1ec6f2bd4d55 (diff)
downloadeclipse.platform.ui-520fcd0e42b75800243cc5f27ae6d2f3105b08d5.tar.gz
eclipse.platform.ui-520fcd0e42b75800243cc5f27ae6d2f3105b08d5.tar.xz
eclipse.platform.ui-520fcd0e42b75800243cc5f27ae6d2f3105b08d5.zip
bug 211003 [CommonNavigator] [Common Navigator] link with editor property is the same as title image
Diffstat (limited to 'bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java')
-rw-r--r--bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java b/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
index cb3407e15ad..5fc177c997a 100644
--- a/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
+++ b/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
@@ -120,8 +120,11 @@ public class CommonNavigator extends ViewPart implements ISetSelectionTarget, IS
* <p>
* Used to track changes to the {@link #isLinkingEnabled}&nbsp;property.
* </p>
+ *
+ * Make sure this does not conflict with anything in IWorkbenchPartConstants.
+ *
*/
- public static final int IS_LINKING_ENABLED_PROPERTY = 1;
+ public static final int IS_LINKING_ENABLED_PROPERTY = 0x10000;
private CommonViewer commonViewer;

Back to the top