Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/Internal/TextUI/IViewPrimitivesFactoryService.cs')
-rw-r--r--src/Text/Def/Internal/TextUI/IViewPrimitivesFactoryService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Text/Def/Internal/TextUI/IViewPrimitivesFactoryService.cs b/src/Text/Def/Internal/TextUI/IViewPrimitivesFactoryService.cs
index 2408671..bed9ced 100644
--- a/src/Text/Def/Internal/TextUI/IViewPrimitivesFactoryService.cs
+++ b/src/Text/Def/Internal/TextUI/IViewPrimitivesFactoryService.cs
@@ -52,16 +52,16 @@ namespace Microsoft.VisualStudio.Text.Editor
DisplayTextRange CreateDisplayTextRange(TextView textView, TextRange textRange);
/// <summary>
- /// Creates a <see cref="Selection"/> primitive.
+ /// Creates a <see cref="LegacySelection"/> primitive.
/// </summary>
/// <param name="textView">The <see cref="ITextView"/> on which to base this primitive.</param>
- /// <returns>The <see cref="Selection"/> primitive for the given <see cref="ITextView"/>.</returns>
+ /// <returns>The <see cref="LegacySelection"/> primitive for the given <see cref="ITextView"/>.</returns>
/// <remarks>
/// <para>
/// This method always returns the same object if the same <see cref="ITextView"/> is passed in.
/// </para>
/// </remarks>
- Selection CreateSelection(TextView textView);
+ LegacySelection CreateSelection(TextView textView);
/// <summary>
/// Creates a <see cref="Caret"/> primitive.