remove assertions

This commit is contained in:
Vogel, Rick 2023-04-28 14:42:08 +02:00
parent ed842d07d4
commit f0c7e3690a
1 changed files with 1 additions and 3 deletions

View File

@ -126,8 +126,7 @@ void QskListViewSkinlet::updateBackgroundNode( const QskListView* listView, QSGN
boxNode = updateBoxNode( listView, boxNode, boxRect, subControl );
if ( boxNode && prepend )
{
Q_ASSERT(boxNode);
{
rowNode->prependChildNode( boxNode );
}
}
@ -144,7 +143,6 @@ void QskListViewSkinlet::updateBackgroundNode( const QskListView* listView, QSGN
if ( boxNode && prepend )
{
Q_ASSERT(boxNode);
rowNode->prependChildNode( boxNode );
}
}