Changeset 7842 for branches/HeuristicLab.TimeSeries/HeuristicLab.CodeEditor
- Timestamp:
- 05/16/12 16:28:49 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries
- Property svn:mergeinfo changed
-
branches/HeuristicLab.TimeSeries/HeuristicLab.CodeEditor/3.3/ToolTipProvider.cs
r4068 r7842 60 60 TextEditor.TextArea textArea = editor.ActiveTextAreaControl.TextArea; 61 61 NRefactoryResolver resolver = new NRefactoryResolver(codeEditor.projectContent.Language); 62 ResolveResult rr = resolver.Resolve(expression, 63 codeEditor.parseInformation, 64 textArea.MotherTextEditorControl.Text); 65 string toolTipText = GetText(rr); 66 if (toolTipText != null) { 67 e.ShowToolTip(toolTipText); 62 if (expression.Expression != null) { 63 ResolveResult rr = resolver.Resolve(expression, 64 codeEditor.parseInformation, 65 textArea.MotherTextEditorControl.Text); 66 string toolTipText = GetText(rr); 67 if (toolTipText != null) { 68 e.ShowToolTip(toolTipText); 69 } 68 70 } 69 71 }
Note: See TracChangeset
for help on using the changeset viewer.