Skip to content

Commit

Permalink
fix case (Sql -> SQL)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Nov 10, 2021
1 parent 0040d17 commit 440f572
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/gui/providers/ogr/qgsogrdbtablemodel.cpp
Expand Up @@ -26,7 +26,7 @@ QgsOgrDbTableModel::QgsOgrDbTableModel( QObject *parent )
mColumns << tr( "Table" )
<< tr( "Type" )
<< tr( "Geometry column" )
<< tr( "Sql" );
<< tr( "SQL" );
setHorizontalHeaderLabels( columns() );
}

Expand Down
2 changes: 1 addition & 1 deletion src/providers/db2/qgsdb2tablemodel.cpp
Expand Up @@ -32,7 +32,7 @@ QgsDb2TableModel::QgsDb2TableModel( QObject *parent )
<< tr( "SRID" )
<< tr( "Primary key column" )
<< tr( "Select at id" )
<< tr( "Sql" );
<< tr( "SQL" );
setHorizontalHeaderLabels( mColumns );
}

Expand Down
2 changes: 1 addition & 1 deletion src/providers/hana/qgshanatablemodel.cpp
Expand Up @@ -34,7 +34,7 @@ QgsHanaTableModel::QgsHanaTableModel( QObject *parent )
<< tr( "SRID" )
<< tr( "Feature id" )
<< tr( "Select at id" )
<< tr( "Sql" );
<< tr( "SQL" );
setHorizontalHeaderLabels( mColumns );
}

Expand Down
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqltablemodel.cpp
Expand Up @@ -32,7 +32,7 @@ QgsMssqlTableModel::QgsMssqlTableModel( QObject *parent )
<< tr( "SRID" )
<< tr( "Primary key column" )
<< tr( "Select at id" )
<< tr( "Sql" )
<< tr( "SQL" )
<< tr( "View" );
setHorizontalHeaderLabels( mColumns );
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoracletablemodel.cpp
Expand Up @@ -30,7 +30,7 @@ QgsOracleTableModel::QgsOracleTableModel( QObject *parent )
<< tr( "SRID" )
<< tr( "Primary key column" )
<< tr( "Select at id" )
<< tr( "Sql" );
<< tr( "SQL" );
setHorizontalHeaderLabels( mColumns );
}

Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgtablemodel.cpp
Expand Up @@ -37,7 +37,7 @@ QgsPgTableModel::QgsPgTableModel( QObject *parent )
<< tr( "Feature id" )
<< tr( "Select at id" )
<< tr( "Check PK unicity" )
<< tr( "Sql" );
<< tr( "SQL" );
setHorizontalHeaderLabels( mColumns );
setHeaderData( Columns::DbtmSelectAtId, Qt::Orientation::Horizontal, tr( "Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views)." ), Qt::ToolTipRole );
setHeaderData( Columns::DbtmCheckPkUnicity, Qt::Orientation::Horizontal, tr( "Enable check for primary key unicity when loading views and materialized views. This option can make loading of large datasets significantly slower." ), Qt::ToolTipRole );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/spatialite/qgsspatialitetablemodel.cpp
Expand Up @@ -25,7 +25,7 @@ QgsSpatiaLiteTableModel::QgsSpatiaLiteTableModel( QObject *parent )
mColumns << tr( "Table" )
<< tr( "Type" )
<< tr( "Geometry column" )
<< tr( "Sql" );
<< tr( "SQL" );
setHorizontalHeaderLabels( mColumns );
}

Expand Down

0 comments on commit 440f572

Please sign in to comment.