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
path: root/src
diff options
context:
space:
mode:
authorAaron Bockover <abock@microsoft.com>2019-06-27 23:06:26 +0300
committerAaron Bockover <abock@microsoft.com>2019-06-27 23:06:26 +0300
commit23d9a046163fa3103098376d0f5f8983a873d540 (patch)
tree6301e02f6170ffb3baee0a1b6e0402d9e672414d /src
parente6873ebdc44eec54da0e94a29d71f6bcf64f6275 (diff)
Sync with vs-editor-core@855f3f1a
Diffstat (limited to 'src')
-rw-r--r--src/Editor/Text/Def/TextUICocoa/Editor/ICocoaTextView.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Editor/Text/Def/TextUICocoa/Editor/ICocoaTextView.cs b/src/Editor/Text/Def/TextUICocoa/Editor/ICocoaTextView.cs
index 8537766..f7fe9e5 100644
--- a/src/Editor/Text/Def/TextUICocoa/Editor/ICocoaTextView.cs
+++ b/src/Editor/Text/Def/TextUICocoa/Editor/ICocoaTextView.cs
@@ -32,6 +32,8 @@ namespace Microsoft.VisualStudio.Text.Editor
/// </summary>
event EventHandler<ZoomLevelChangedEventArgs> ZoomLevelChanged;
- NSCursor Cursor { get; set; }
+ void PushCursor(object context, NSCursor cursor);
+
+ void PopCursor(object context);
}
} \ No newline at end of file