Improve debug output.

This commit is contained in:
Teo Mrnjavac 2016-06-23 09:48:03 +02:00
parent 9e186190fc
commit 3d5ccb2712

View file

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