Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Aug 18, 2019
1 parent d02a172 commit a81c4b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/providers/postgres/qgspgsourceselect.cpp
Expand Up @@ -58,12 +58,12 @@ QWidget *QgsPgSourceSelectDelegate::createEditor( QWidget *parent, const QStyleO
{
QComboBox *cb = new QComboBox( parent );
static const QList<QgsWkbTypes::Type> types { QgsWkbTypes::Point
, QgsWkbTypes::LineString
, QgsWkbTypes::Polygon
, QgsWkbTypes::MultiPoint
, QgsWkbTypes::MultiLineString
, QgsWkbTypes::MultiPolygon
, QgsWkbTypes::NoGeometry };
, QgsWkbTypes::LineString
, QgsWkbTypes::Polygon
, QgsWkbTypes::MultiPoint
, QgsWkbTypes::MultiLineString
, QgsWkbTypes::MultiPolygon
, QgsWkbTypes::NoGeometry };
for ( QgsWkbTypes::Type type : types )
{
cb->addItem( QgsPgTableModel::iconForWkbType( type ), QgsPostgresConn::displayStringForWkbType( type ), type );
Expand Down

0 comments on commit a81c4b2

Please sign in to comment.