removed doubled clone in model::paste

This commit is contained in:
2025-08-24 14:19:39 +02:00
parent ff536243ac
commit 399366cecf
4 changed files with 10 additions and 8 deletions

View File

@@ -86,10 +86,13 @@ XQItem* XQMainModel::addProjectItem( XQNodePtr contentNode )
void XQMainModel::addSectionItem( const XQModelSection& section, XQItem* projectItem )
{
/*
return;
qDebug() << " --- addSecxtion: " << projectItem->sheetNode()->to_string();
return;
XQNodePtr sheetNode = projectItem->sheetNode()->find_child_by_tag_name("CurrentSection");
XQItemList list = _itemFactory.makeRow( XQItemFactory::mSingle, sheetNode, nullptr, c_ContentType );
projectItem->appendRow( list );
_treeTable->expand( projectItem->index() );
*/
}