Skip to content
Snippets Groups Projects
Commit 0166f454 authored by Edward Brown's avatar Edward Brown
Browse files

Fixed compilation error caused by use of cout without header.

Re #22263
parent 3573e478
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,6 @@ QtStandardItemMutableTreeAdapter::modelItemFromIndex(QModelIndex const &index) {
void QtStandardItemMutableTreeAdapter::removeRowAt(QModelIndex const &index) {
if (index.isValid()) {
std::cout << "Index is valid" << std::endl;
model().removeRows(index.row(), 1, model().parent(index));
} else {
model().removeRows(0, model().rowCount());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment