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:
authorAaron Bockover <abock@microsoft.com>2019-05-30 04:15:16 +0300
committerAaron Bockover <abock@microsoft.com>2019-05-30 04:15:16 +0300
commit5bd38ee6dcf9c128fe2e890711b1e1d2030cf991 (patch)
tree493fb134f80749d217dd580e2806859c942676ee /src/Editor/Text/Def
parent96257adec38ab6595a9223252555bbb4e87b5f34 (diff)
Sync with vs-editor-core@9b03e621
Diffstat (limited to 'src/Editor/Text/Def')
-rw-r--r--src/Editor/Text/Def/Extras/GoToLine/IGoToLinePresenterFactory.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Editor/Text/Def/Extras/GoToLine/IGoToLinePresenterFactory.cs b/src/Editor/Text/Def/Extras/GoToLine/IGoToLinePresenterFactory.cs
index d160794..f64ad6f 100644
--- a/src/Editor/Text/Def/Extras/GoToLine/IGoToLinePresenterFactory.cs
+++ b/src/Editor/Text/Def/Extras/GoToLine/IGoToLinePresenterFactory.cs
@@ -3,13 +3,12 @@
// Licensed under the MIT License. See License.txt in the project root for license information.
//
-using Microsoft.VisualStudio.Core.Imaging;
using Microsoft.VisualStudio.Text.Editor;
namespace Microsoft.VisualStudio.Text.Extras.GoToLine
{
public interface IGoToLinePresenterFactory
{
- IGoToLinePresenter TryGetGoToLinePresenter(ITextView textView, IImageService imageService);
+ bool TryGetGoToLinePresenter(ITextView textView, out IGoToLinePresenter goToLinePresenter);
}
} \ No newline at end of file