From 2f17a3ceee97c971a85e8019a42598ad1ece19a3 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Wed, 25 Sep 2019 10:17:26 +1000 Subject: [PATCH] Identation --- src/gui/attributetable/qgsattributetablemodel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/attributetable/qgsattributetablemodel.cpp b/src/gui/attributetable/qgsattributetablemodel.cpp index 0b30c970f82..33582820015 100644 --- a/src/gui/attributetable/qgsattributetablemodel.cpp +++ b/src/gui/attributetable/qgsattributetablemodel.cpp @@ -690,10 +690,10 @@ QVariant QgsAttributeTableModel::data( const QModelIndex &index, int role ) cons case Qt::DisplayRole: case Qt::ToolTipRole: return mFieldFormatters.at( index.column() )->representValue( layer(), - fieldId, - mWidgetConfigs.at( index.column() ), - mAttributeWidgetCaches.at( index.column() ), - val ); + fieldId, + mWidgetConfigs.at( index.column() ), + mAttributeWidgetCaches.at( index.column() ), + val ); case Qt::EditRole: return val;