File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,11 @@ void QgsDatumTransformDialog::load()
7777 continue ;
7878
7979 QString toolTipString;
80+ if ( gridShiftTransformation ( item->text ( i ) ) )
81+ {
82+ toolTipString.append ( QString ( " <p><b>NTv2</b></p>" ) );
83+ }
84+
8085 if ( epsgNr > 0 )
8186 toolTipString.append ( QString ( " <p><b>EPSG Transformations Code:</b> %1</p>" ).arg ( epsgNr ) );
8287
@@ -181,7 +186,11 @@ bool QgsDatumTransformDialog::testGridShiftFileAvailability( QTreeWidgetItem* it
181186 QStringList::const_iterator fileIt = fileList.constBegin ();
182187 for ( ; fileIt != fileList.constEnd (); ++fileIt )
183188 {
184- if ( *fileIt == filename )
189+ #if defined(Q_OS_WIN)
190+ if ( fileIt->compare ( filename, Qt::CaseInsensitive ) == 0 )
191+ #else
192+ if ( fileIt->compare ( filename ) == 0 )
193+ #endif // Q_OS_WIN
185194 {
186195 return true ;
187196 }
You can’t perform that action at this time.
0 commit comments