Skip to content

Commit a62ed83

Browse files
committed
Fixed notification data types
1 parent 67a900d commit a62ed83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PluginCore/ScintillaNet/Structs.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ namespace ScintillaNet
55
public struct NotifyHeader
66
{
77
public IntPtr hwndFrom;
8-
public uint idFrom;
8+
public IntPtr idFrom;
99
public uint code;
1010
};
1111

1212
public struct SCNotification
1313
{
1414
public NotifyHeader nmhdr;
1515
public int position;
16-
public int ch;
16+
public char ch;
1717
public int modifiers;
1818
public int modificationType;
1919
public IntPtr text;

0 commit comments

Comments
 (0)