Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2013-04-09 12:40:46 +0000
committerMarkus Keller2013-04-09 12:40:46 +0000
commite434b72fa7876b32d57dbd0e9367cc25faabcdf0 (patch)
tree6a2cc858ca79f88001d9b55a8f3b63a725f05d59
parent21e67ff09dca32ef46bf194a17289b976c6fd7a0 (diff)
downloadeclipse.platform.ui-e434b72fa7876b32d57dbd0e9367cc25faabcdf0.tar.gz
eclipse.platform.ui-e434b72fa7876b32d57dbd0e9367cc25faabcdf0.tar.xz
eclipse.platform.ui-e434b72fa7876b32d57dbd0e9367cc25faabcdf0.zip
Bug 401709: Secondary Problems view doesn't have a view menu -> not configurableI20130409-0900
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
index a4f35d7d44f..488e5390bb4 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
@@ -1900,7 +1900,7 @@ public class WorkbenchPage extends CompatibleWorkbenchPage implements
int colonIndex = reference.getId().indexOf(':');
String descId = colonIndex == -1 ? viewId : viewId.substring(0, colonIndex);
- if (viewId.equals(descId)) {
+ if (descId.equals(reference.getId())) {
String refSecondaryId = reference.getSecondaryId();
if (refSecondaryId == null) {
if (secondaryId == null) {

Back to the top