Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix broken use of qMakePair on qt 6
  • Loading branch information
nyalldawson committed Jul 27, 2021
1 parent fdde10c commit 6f24bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsguiutils.cpp
Expand Up @@ -179,7 +179,7 @@ namespace QgsGuiUtils
outputFileName += '.' + ext;
}

return qMakePair<QString, QString>( outputFileName, ext );
return qMakePair( outputFileName, ext );
}

QString createFileFilter_( QString const &longName, QString const &glob )
Expand Down

0 comments on commit 6f24bac

Please sign in to comment.