File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
- 4.10.2015 - First binary release of QtSharp - https://github.com/ddobrev/QtSharp/releases/tag/0.0.1.
1
+ 0.0.2 - 5.11.2015
2
+ Fixed:
3
+ - A crash when using QFormLayout.
4
+
5
+ 0.0.1 - 4.10.2015
6
+ - First binary release of QtSharp.
Original file line number Diff line number Diff line change @@ -335,9 +335,9 @@ private void DocumentQtProperty(Declaration property)
335
335
{
336
336
return ;
337
337
}
338
-
338
+ var qualifiedName = property . GetQualifiedName ( decl => decl . OriginalName , decl => decl . Namespace ) ;
339
339
var node = this . propertyNodes [ property . Name ] . Find (
340
- c => c . Attribute ( "fullname" ) . Value == property . QualifiedOriginalName ) ;
340
+ c => c . Attribute ( "fullname" ) . Value == qualifiedName ) ;
341
341
if ( node != null && node . Attribute ( "href" ) != null )
342
342
{
343
343
var link = node . Attribute ( "href" ) . Value . Split ( '#' ) ;
You can’t perform that action at this time.
0 commit comments