From fc086adb342c626ed2471fbc31a48d715b37e858 Mon Sep 17 00:00:00 2001 From: Martin Dobias Date: Sat, 23 Jan 2016 20:40:59 +0100 Subject: [PATCH] Remove too much debug output when loading attribute table (refs #14041) This makes debug version much faster, probably not much difference in release version --- src/gui/attributetable/qgsattributetablemodel.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gui/attributetable/qgsattributetablemodel.cpp b/src/gui/attributetable/qgsattributetablemodel.cpp index 3572223106ea..eb83a90b6c9f 100644 --- a/src/gui/attributetable/qgsattributetablemodel.cpp +++ b/src/gui/attributetable/qgsattributetablemodel.cpp @@ -370,8 +370,6 @@ void QgsAttributeTableModel::loadLayer() { ++i; - QgsDebugMsg( QString( "Next feature %1" ).arg( i ) ); - if ( t.elapsed() > 1000 ) { bool cancel = false; @@ -488,7 +486,6 @@ int QgsAttributeTableModel::fieldCol( int idx ) const int QgsAttributeTableModel::rowCount( const QModelIndex &parent ) const { - QgsDebugMsg( QString( "Row Count %1" ).arg( mRowIdMap.size() ) ); Q_UNUSED( parent ); return mRowIdMap.size(); }