Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Capitalization, tooltips
- Loading branch information
Showing
with
4 additions
and
2 deletions.
-
+4
−2
src/app/qgsdatumtransformtablewidget.cpp
|
@@ -101,6 +101,7 @@ QVariant QgsDatumTransformTableModel::data( const QModelIndex &index, int role ) |
|
|
return font; |
|
|
} |
|
|
case Qt::DisplayRole: |
|
|
case Qt::ToolTipRole: |
|
|
switch ( index.column() ) |
|
|
{ |
|
|
case SourceCrsColumn: |
|
@@ -149,16 +150,17 @@ QVariant QgsDatumTransformTableModel::headerData( int section, Qt::Orientation o |
|
|
switch ( role ) |
|
|
{ |
|
|
case Qt::DisplayRole: |
|
|
case Qt::ToolTipRole: |
|
|
switch ( section ) |
|
|
{ |
|
|
case SourceCrsColumn : |
|
|
return tr( "Source CRS" ); |
|
|
case SourceTransformColumn: |
|
|
return tr( "Source datum transform" ); |
|
|
return tr( "Source Datum Transform" ); |
|
|
case DestinationCrsColumn: |
|
|
return tr( "Destination CRS" ); |
|
|
case DestinationTransformColumn: |
|
|
return tr( "Destination datum transform" ); |
|
|
return tr( "Destination Datum Transform" ); |
|
|
default: |
|
|
break; |
|
|
} |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.