We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99fa36 commit 07c4851Copy full SHA for 07c4851
BasicPawn/Controls and Forms/Main/UCInformationList.vb
@@ -73,7 +73,7 @@ Public Class UCInformationList
73
End Sub
74
75
Public Function ParseFromCompilerOutput(sFile As String, sOutputLine As String) As ClassListBoxItemAction.ClassActions.STRUC_ACTION_GOTO
76
- Dim mMatch As Match = Regex.Match(sOutputLine, "^(?<File>.+?)\((?<Line>([0-9]+)|(?<LineStart>[0-9]+)\s*--\s*(?<LineEnd>[0-9]+))\)\s*:", RegexOptions.IgnoreCase)
+ Dim mMatch As Match = Regex.Match(sOutputLine, "^(?<File>.+?)\(((?<Line>[0-9]+)|(?<LineStart>[0-9]+)\s*--\s*(?<LineEnd>[0-9]+))\)\s*:", RegexOptions.IgnoreCase)
77
If (mMatch.Success) Then
78
Dim sOutputFile As String = mMatch.Groups("File").Value.Replace("/"c, "\"c)
79
0 commit comments