In the file ScintillaControl.cs line 1232:
****************************************
/// <summary>
/// Retrieve the position before the first non
indentation character on a line.
///
/// </summary>
/// <remarks>Autogenerated: IGEN18</remarks>
public int LineIndentPosition(int line)
{
return (int)SPerform(2128, 0, 0);
}
/// <summary>
/// Retrieve the column number of a position, taking
tab width into account.
///
/// </summary>
/// <remarks>Autogenerated: IGEN18</remarks>
public int Column(int pos)
{
return (int)SPerform(2129, 0, 0);
}
*********************************************
The Fix:
/// <summary>
/// Retrieve the position before the first non
indentation character on a line.
///
/// </summary>
/// <remarks>Autogenerated: IGEN18</remarks>
public int LineIndentPosition(int line)
{
return (int)SPerform(2128, (uint)line, 0); //fixed
by greg
}
/// <summary>
/// Retrieve the column number of a position, taking
tab width into account.
///
/// </summary>
/// <remarks>Autogenerated: IGEN18</remarks>
public int Column(int pos)
{
return (int)SPerform(2129, (uint)pos, 0); //fixed
by greg
}
Logged In: YES
user_id=528403
Of course, those aren't the only two affected... all of the
IGEN18 functions are...