Skip to content

Commit

Permalink
Update View.java
Browse files Browse the repository at this point in the history
Use the plugin id as prefix
  • Loading branch information
marioja authored and vogella committed Apr 5, 2018
1 parent fe96380 commit 25438ef
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -69,7 +69,7 @@ public void createPartControl(Composite parent) {
viewer.setInput(new String[] { "One", "Two", "Three" });
Text text = new Text(parent, SWT.NONE);
text.setText("Hello");
PlatformUI.getWorkbench().getHelpSystem().setHelp(text, "message");
PlatformUI.getWorkbench().getHelpSystem().setHelp(text, "de.vogella.rcp.help.content.message");
}

/**
Expand All @@ -78,4 +78,4 @@ public void createPartControl(Composite parent) {
public void setFocus() {
viewer.getControl().setFocus();
}
}
}

0 comments on commit 25438ef

Please sign in to comment.