We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2e8af commit 3e233abCopy full SHA for 3e233ab
CppSharp Qt plan.odt
-62 Bytes
QtSharp/Documentation.cs
@@ -330,6 +330,12 @@ public void DocumentProperty(Property property)
330
property.Comment = comment;
331
}
332
333
+ else
334
+ {
335
+ property.LineNumberStart = property.Field.LineNumberStart;
336
+ property.LineNumberEnd = property.Field.LineNumberEnd;
337
+ this.DocumentVariable(property);
338
+ }
339
340
341
private void DocumentQtProperty(Declaration property)
@@ -465,7 +471,7 @@ from code in member.Descendants("code")
465
471
466
472
467
473
468
- public void DocumentVariable(Variable variable)
474
+ public void DocumentVariable(Declaration variable)
469
475
{
470
476
var lineStart = variable.LineNumberStart.ToString();
477
var lineEnd = variable.LineNumberEnd.ToString();
0 commit comments