Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Caks2016-09-08 09:20:33 +0000
committerChristoph Caks2016-09-08 09:20:33 +0000
commitdefbf67b919721bbe671c110931c0512e74e8616 (patch)
treeb6dd134df9c03ac4204ad4d13a777b398481675b
parentb831e3560894bee84c113a5db5a0aa528173c34a (diff)
downloadorg.eclipse.efxclipse-defbf67b919721bbe671c110931c0512e74e8616.tar.gz
org.eclipse.efxclipse-defbf67b919721bbe671c110931c0512e74e8616.tar.xz
org.eclipse.efxclipse-defbf67b919721bbe671c110931c0512e74e8616.zip
refs #6
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.fx/src/org/eclipse/fx/code/editor/fx/services/FXCompletionProposal.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/code/org.eclipse.fx.code.editor.fx/src/org/eclipse/fx/code/editor/fx/services/FXCompletionProposal.java b/bundles/code/org.eclipse.fx.code.editor.fx/src/org/eclipse/fx/code/editor/fx/services/FXCompletionProposal.java
index dfe6cb0e7..b53149530 100644
--- a/bundles/code/org.eclipse.fx.code.editor.fx/src/org/eclipse/fx/code/editor/fx/services/FXCompletionProposal.java
+++ b/bundles/code/org.eclipse.fx.code.editor.fx/src/org/eclipse/fx/code/editor/fx/services/FXCompletionProposal.java
@@ -26,11 +26,11 @@ public class FXCompletionProposal<T extends CompletionProposal> implements IComp
private final IContextInformation fContextInformation;
- public FXCompletionProposal(T proposal, Supplier<Node> graphicSupplier, IContextInformation contextInformation, String hoverInfo) {
+ public FXCompletionProposal(T proposal, Supplier<Node> graphicSupplier, IContextInformation contextInformation, CharSequence hoverInfo) {
this(proposal, proposal.getLabel(), graphicSupplier, contextInformation, hoverInfo);
}
- public FXCompletionProposal(T proposal, CharSequence label, Supplier<Node> graphicSupplier, IContextInformation contextInformation, String hoverInfo) {
+ public FXCompletionProposal(T proposal, CharSequence label, Supplier<Node> graphicSupplier, IContextInformation contextInformation, CharSequence hoverInfo) {
this(proposal, p -> label, p -> graphicSupplier.get(), contextInformation, p -> hoverInfo);
}

Back to the top