Revert "Improve debug output."

This reverts commit 3d5ccb2712.
This commit is contained in:
Teo Mrnjavac 2016-06-24 17:38:45 +02:00
parent d4d2fd1432
commit 59f0e9cc2d

View file

@ -71,9 +71,10 @@ PartitionBarsView::PartitionBarsView( QWidget* parent )
(Partition *)( index.data( PartitionModel::PartitionPtrRole )
.value< void* >() );
cDebug() << "Clicked row" << index.row()
<< "\n\tpath: " << selectedPartition->partitionPath()
<< "\n\tfirstSector:" << selectedPartition->firstSector()
<< "\n\tlastSector: " << selectedPartition->lastSector();
<< "\npath: " << selectedPartition->partitionPath()
<< "\nfirstSector:" << selectedPartition->firstSector()
<< "\nlastSector: " << selectedPartition->lastSector();
} );
setMouseTracking( true );
}