Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 1ed3b71

Browse files
oleg-shilokbilsted
authored andcommitted
- Fixed problem with the color bits
1 parent 3e6549e commit 1ed3b71

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Visual Studio Project Template C#/PluginInfrastructure/GatewayDomain.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ public Cells(char[] charactersAndStyles)
202202
{
203203
this.charactersAndStyles = charactersAndStyles;
204204
}
205-
206205
public char[] Value { get { return charactersAndStyles; } }
207206
}
208207

@@ -230,11 +229,8 @@ struct Sci_TextRange
230229
public CharacterRange chrg;
231230
public IntPtr lpstrText;
232231
}
233-
234232
public IntPtr NativePointer { get { _initNativeStruct(); return _ptrSciTextRange; } }
235-
236233
public string lpstrText { get { _readNativeStruct(); return Marshal.PtrToStringAnsi(_sciTextRange.lpstrText); } }
237-
238234
public CharacterRange chrg { get { _readNativeStruct(); return _sciTextRange.chrg; } set { _sciTextRange.chrg = value; _initNativeStruct(); } }
239235

240236
void _initNativeStruct()

0 commit comments

Comments
 (0)