# # # patch "src/model/Workspace.cpp" # from [6012ea1274d1a6e50a2bcc3f640616fd0e456c06] # to [94ea899860edfb7519cb58640209adacfbfcb0d1] # ============================================================ --- src/model/Workspace.cpp 6012ea1274d1a6e50a2bcc3f640616fd0e456c06 +++ src/model/Workspace.cpp 94ea899860edfb7519cb58640209adacfbfcb0d1 @@ -245,15 +245,16 @@ // // it seems to be a valid item // - // append item to final list - qDebug("pushed back %s", currentItem->getPath().latin1()); - finalItems->push_back(currentItem); // if the item is directory a directory, make sure we catch decendant items... recursion! if (currentItem->isDirectory()) { currentItem->setChildren(*(buildTreeRecursive(items, currentItem))); } + + // append item to final list + finalItems->push_back(currentItem); + } return finalItems; }