Skip to content

Commit 551accf

Browse files
committed
fixed NullReferenceException in "copy inspection results to clipboard" feature
1 parent 158eaa9 commit 551accf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RetailCoder.VBE/UI/CodeInspections/CodeInspectionsDockablePresenter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ private string FormatResultForClipboard(ICodeInspectionResult result)
115115
"{0}: {1} - {2}.{3}, line {4}",
116116
result.Severity,
117117
result.Name,
118-
module.Project.Name,
119-
module.Component.Name,
118+
module.ProjectName,
119+
module.ComponentName,
120120
result.QualifiedSelection.Selection.StartLine);
121121
}
122122

0 commit comments

Comments
 (0)