7d5496e959
81 namespace declarations and 100 using directives converted via sed, plus two FQN-aliases (ChatTwoPartyFinderPayload in PayloadHandler.cs and ModifierFlag in KeybindManager.cs) updated. Critical: Language.Designer.cs and HellionStrings.Designer.cs ResourceManager string arguments updated synchronously — these are runtime reflection lookups not caught by the C# compiler. Two intentional ChatTwo references remain: the legacy migration path 'ChatTwo.json' in Plugin.cs (still points to upstream Chat 2's config file by design) and the InternalsVisibleTo declaration in AssemblyInfo.cs (handled in the upcoming repo-folder rename task). The local alias names 'ChatTwoPartyFinderPayload' and 'ChatTwoConflictDetector' are preserved as local symbols; only their target namespaces and references changed.
16 lines
338 B
C#
Executable File
16 lines
338 B
C#
Executable File
namespace HellionChat.Ui;
|
|
|
|
internal class AutoCompleteInfo
|
|
{
|
|
internal string ToComplete;
|
|
internal int StartPos { get; }
|
|
internal int EndPos { get; }
|
|
|
|
internal AutoCompleteInfo(string toComplete, int startPos, int endPos)
|
|
{
|
|
ToComplete = toComplete;
|
|
StartPos = startPos;
|
|
EndPos = endPos;
|
|
}
|
|
}
|