Skip to content

Commit

Permalink
Remove use of deprecated trUtf8 method
Browse files Browse the repository at this point in the history
This method was deprecated in Qt 5.0 - we need to remove
its use so that we can turn off the remaining Qt4 compatibility
switches.
  • Loading branch information
nyalldawson committed Feb 21, 2018
1 parent f144553 commit 1eea857
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmextractbyattribute.cpp
Expand Up @@ -50,7 +50,7 @@ void QgsExtractByAttributeAlgorithm::initAlgorithm( const QVariantMap & )
addParameter( new QgsProcessingParameterField( QStringLiteral( "FIELD" ), QObject::tr( "Selection attribute" ), QVariant(), QStringLiteral( "INPUT" ) ) );
addParameter( new QgsProcessingParameterEnum( QStringLiteral( "OPERATOR" ), QObject::tr( "Operator" ), QStringList()
<< QObject::tr( "=" )
<< QObject::trUtf8( "" )
<< QObject::tr( "" )
<< QObject::tr( ">" )
<< QObject::tr( ">=" )
<< QObject::tr( "<" )
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -2852,7 +2852,7 @@ void QgisApp::createStatusBar()
mRotationEdit->setWrapping( true );
mRotationEdit->setSingleStep( 5.0 );
mRotationEdit->setFont( myFont );
mRotationEdit->setSuffix( trUtf8( " °" ) );
mRotationEdit->setSuffix( tr( " °" ) );
mRotationEdit->setWhatsThis( tr( "Shows the current map clockwise rotation "
"in degrees. It also allows editing to set "
"the rotation" ) );
Expand Down Expand Up @@ -10468,7 +10468,7 @@ bool QgisApp::checkTasksDependOnProject()
{
Q_FOREACH ( QgsTask *task, tasks )
{
activeTaskDescriptions.insert( trUtf8( " • %1" ).arg( task->description() ) );
activeTaskDescriptions.insert( tr( " • %1" ).arg( task->description() ) );
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/app/qgsmapcanvasdockwidget.cpp
Expand Up @@ -357,7 +357,7 @@ void QgsMapCanvasDockWidget::mapExtentChanged()

void QgsMapCanvasDockWidget::mapCrsChanged()
{
mActionSetCrs->setText( trUtf8( "Change Map CRS (%1)…" ).arg( mMapCanvas->mapSettings().destinationCrs().isValid() ?
mActionSetCrs->setText( tr( "Change Map CRS (%1)…" ).arg( mMapCanvas->mapSettings().destinationCrs().isValid() ?
mMapCanvas->mapSettings().destinationCrs().authid() :
tr( "No projection" ) ) );
}
Expand Down Expand Up @@ -496,7 +496,7 @@ QgsMapSettingsAction::QgsMapSettingsAction( QWidget *parent )
mRotationWidget->setRange( -180.0, 180.0 );
mRotationWidget->setWrapping( true );
mRotationWidget->setSingleStep( 5.0 );
mRotationWidget->setSuffix( trUtf8( " °" ) );
mRotationWidget->setSuffix( tr( " °" ) );
mRotationWidget->setToolTip( tr( "Current clockwise map rotation in degrees" ) );

label = new QLabel( tr( "Rotation" ) );
Expand Down Expand Up @@ -528,7 +528,7 @@ QgsMapSettingsAction::QgsMapSettingsAction( QWidget *parent )
gLayout->addWidget( mSyncScaleCheckBox, 4, 0, 1, 2 );

mScaleFactorWidget = new QgsDoubleSpinBox();
mScaleFactorWidget->setSuffix( trUtf8( "×" ) );
mScaleFactorWidget->setSuffix( tr( "×" ) );
mScaleFactorWidget->setDecimals( 2 );
mScaleFactorWidget->setRange( 0.01, 100000 );
mScaleFactorWidget->setWrapping( false );
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgsmapthemes.cpp
Expand Up @@ -134,7 +134,7 @@ void QgsMapThemes::replaceTriggered()
return;

int res = QMessageBox::question( mMenu, tr( "Replace Theme" ),
trUtf8( "Are you sure you want to replace the existing theme “%1”?" ).arg( actionPreset->text() ),
tr( "Are you sure you want to replace the existing theme “%1”?" ).arg( actionPreset->text() ),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
if ( res != QMessageBox::Yes )
return;
Expand All @@ -161,7 +161,7 @@ void QgsMapThemes::removeCurrentPreset()
if ( actionPreset->isChecked() )
{
int res = QMessageBox::question( mMenu, tr( "Remove Theme" ),
trUtf8( "Are you sure you want to remove the existing theme “%1”?" ).arg( actionPreset->text() ),
tr( "Are you sure you want to remove the existing theme “%1”?" ).arg( actionPreset->text() ),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
if ( res == QMessageBox::Yes )
QgsProject::instance()->mapThemeCollection()->removeMapTheme( actionPreset->text() );
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgsmaptoolrotatefeature.cpp
Expand Up @@ -54,7 +54,7 @@ QgsAngleMagnetWidget::QgsAngleMagnetWidget( const QString &label, QWidget *paren
mAngleSpinBox = new QgsDoubleSpinBox( this );
mAngleSpinBox->setMinimum( -360 );
mAngleSpinBox->setMaximum( 360 );
mAngleSpinBox->setSuffix( trUtf8( "°" ) );
mAngleSpinBox->setSuffix( tr( "°" ) );
mAngleSpinBox->setSingleStep( 1 );
mAngleSpinBox->setValue( 0 );
mAngleSpinBox->setShowClearButton( false );
Expand All @@ -65,7 +65,7 @@ QgsAngleMagnetWidget::QgsAngleMagnetWidget( const QString &label, QWidget *paren
mMagnetSpinBox->setMinimum( 0 );
mMagnetSpinBox->setMaximum( 180 );
mMagnetSpinBox->setPrefix( tr( "Snap to " ) );
mMagnetSpinBox->setSuffix( trUtf8( "°" ) );
mMagnetSpinBox->setSuffix( tr( "°" ) );
mMagnetSpinBox->setSingleStep( 15 );
mMagnetSpinBox->setValue( 0 );
mMagnetSpinBox->setClearValue( 0, tr( "No snapping" ) );
Expand Down
34 changes: 17 additions & 17 deletions src/core/qgsunittypes.cpp
Expand Up @@ -649,27 +649,27 @@ QString QgsUnitTypes::toAbbreviatedString( QgsUnitTypes::AreaUnit unit )
switch ( unit )
{
case AreaSquareMeters:
return QObject::trUtf8( "", "area" );
return QObject::tr( "", "area" );
case AreaSquareKilometers:
return QObject::trUtf8( "km²", "area" );
return QObject::tr( "km²", "area" );
case AreaSquareFeet:
return QObject::trUtf8( "ft²", "area" );
return QObject::tr( "ft²", "area" );
case AreaSquareYards:
return QObject::trUtf8( "yd²", "area" );
return QObject::tr( "yd²", "area" );
case AreaSquareMiles:
return QObject::trUtf8( "mi²", "area" );
return QObject::tr( "mi²", "area" );
case AreaHectares:
return QObject::trUtf8( "ha", "area" );
return QObject::tr( "ha", "area" );
case AreaAcres:
return QObject::trUtf8( "ac²", "area" );
return QObject::tr( "ac²", "area" );
case AreaSquareNauticalMiles:
return QObject::trUtf8( "NM²", "area" );
return QObject::tr( "NM²", "area" );
case AreaSquareDegrees:
return QObject::trUtf8( "deg²", "area" );
return QObject::tr( "deg²", "area" );
case AreaSquareCentimeters:
return QObject::trUtf8( "cm²", "area" );
return QObject::tr( "cm²", "area" );
case AreaSquareMillimeters:
return QObject::trUtf8( "mm²", "area" );
return QObject::tr( "mm²", "area" );
case AreaUnknownUnit:
return QString();
}
Expand Down Expand Up @@ -1346,22 +1346,22 @@ QString QgsUnitTypes::formatAngle( double angle, int decimals, QgsUnitTypes::Ang
switch ( unit )
{
case AngleDegrees:
unitLabel = QObject::trUtf8( "°", "angle" );
unitLabel = QObject::tr( "°", "angle" );
break;
case AngleRadians:
unitLabel = QObject::trUtf8( " rad", "angle" );
unitLabel = QObject::tr( " rad", "angle" );
break;
case AngleGon:
unitLabel = QObject::trUtf8( " gon", "angle" );
unitLabel = QObject::tr( " gon", "angle" );
break;
case AngleMinutesOfArc:
unitLabel = QObject::trUtf8( "", "angle minutes" );
unitLabel = QObject::tr( "", "angle minutes" );
break;
case AngleSecondsOfArc:
unitLabel = QObject::trUtf8( "", "angle seconds" );
unitLabel = QObject::tr( "", "angle seconds" );
break;
case AngleTurn:
unitLabel = QObject::trUtf8( " tr", "angle turn" );
unitLabel = QObject::tr( " tr", "angle turn" );
break;
case AngleUnknownUnit:
break;
Expand Down
4 changes: 2 additions & 2 deletions src/gui/locator/qgslocatorwidget.cpp
Expand Up @@ -36,7 +36,7 @@ QgsLocatorWidget::QgsLocatorWidget( QWidget *parent )
{
mLineEdit->setShowClearButton( true );
#ifdef Q_OS_MACX
mLineEdit->setPlaceholderText( trUtf8( "Type to locate (⌘K)" ) );
mLineEdit->setPlaceholderText( tr( "Type to locate (⌘K)" ) );
#else
mLineEdit->setPlaceholderText( tr( "Type to locate (Ctrl+K)" ) );
#endif
Expand Down Expand Up @@ -289,7 +289,7 @@ void QgsLocatorWidget::configMenuAboutToShow()
mMenu->addAction( action );
}
mMenu->addSeparator();
QAction *configAction = new QAction( trUtf8( "Configure…" ), mMenu );
QAction *configAction = new QAction( tr( "Configure…" ), mMenu );
connect( configAction, &QAction::triggered, this, &QgsLocatorWidget::configTriggered );
mMenu->addAction( configAction );

Expand Down
8 changes: 4 additions & 4 deletions src/gui/qgsadvanceddigitizingdockwidget.cpp
Expand Up @@ -110,10 +110,10 @@ QgsAdvancedDigitizingDockWidget::QgsAdvancedDigitizingDockWidget( QgsMapCanvas *
QActionGroup *angleButtonGroup = new QActionGroup( menu ); // actions are exclusive for common angles
mCommonAngleActions = QMap<QAction *, int>();
QList< QPair< int, QString > > commonAngles;
commonAngles << QPair<int, QString>( 0, trUtf8( "Do not snap to common angles" ) );
commonAngles << QPair<int, QString>( 30, trUtf8( "Snap to 30° angles" ) );
commonAngles << QPair<int, QString>( 45, trUtf8( "Snap to 45° angles" ) );
commonAngles << QPair<int, QString>( 90, trUtf8( "Snap to 90° angles" ) );
commonAngles << QPair<int, QString>( 0, tr( "Do not snap to common angles" ) );
commonAngles << QPair<int, QString>( 30, tr( "Snap to 30° angles" ) );
commonAngles << QPair<int, QString>( 45, tr( "Snap to 45° angles" ) );
commonAngles << QPair<int, QString>( 90, tr( "Snap to 90° angles" ) );
for ( QList< QPair< int, QString > >::const_iterator it = commonAngles.constBegin(); it != commonAngles.constEnd(); ++it )
{
QAction *action = new QAction( it->second, menu );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsnewhttpconnection.cpp
Expand Up @@ -188,7 +188,7 @@ bool QgsNewHttpConnection::validate()
if ( ! mAuthSettings->password().isEmpty() &&
QMessageBox::question( this,
tr( "Saving Passwords" ),
trUtf8( "WARNING: You have entered a password. It will be stored in unsecured plain text in your project files and your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't provide a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
tr( "WARNING: You have entered a password. It will be stored in unsecured plain text in your project files and your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't provide a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
QMessageBox::Ok | QMessageBox::Cancel ) == QMessageBox::Cancel )
{
return false;
Expand Down
4 changes: 2 additions & 2 deletions src/gui/qgspropertyassistantwidget.cpp
Expand Up @@ -538,12 +538,12 @@ QgsPropertyGenericNumericAssistantWidget::QgsPropertyGenericNumericAssistantWidg
minOutputSpinBox->setValue( 0.0 );
minOutputSpinBox->setShowClearButton( true );
minOutputSpinBox->setClearValue( 0.0 );
minOutputSpinBox->setSuffix( trUtf8( " °" ) );
minOutputSpinBox->setSuffix( tr( " °" ) );
maxOutputSpinBox->setMaximum( 360.0 );
maxOutputSpinBox->setValue( 360.0 );
maxOutputSpinBox->setShowClearButton( true );
maxOutputSpinBox->setClearValue( 360.0 );
maxOutputSpinBox->setSuffix( trUtf8( " °" ) );
maxOutputSpinBox->setSuffix( tr( " °" ) );
exponentSpinBox->hide();
mExponentLabel->hide();
mLabelMinOutput->setText( tr( "Angle from" ) );
Expand Down
4 changes: 2 additions & 2 deletions src/gui/raster/qgspalettedrendererwidget.cpp
Expand Up @@ -48,9 +48,9 @@ QgsPalettedRendererWidget::QgsPalettedRendererWidget( QgsRasterLayer *layer, con
mAdvancedMenu = new QMenu( tr( "Advanced options" ), this );
QAction *mLoadFromLayerAction = mAdvancedMenu->addAction( tr( "Load classes from layer" ) );
connect( mLoadFromLayerAction, &QAction::triggered, this, &QgsPalettedRendererWidget::loadFromLayer );
QAction *loadFromFile = mAdvancedMenu->addAction( trUtf8( "Load color map from file…" ) );
QAction *loadFromFile = mAdvancedMenu->addAction( tr( "Load color map from file…" ) );
connect( loadFromFile, &QAction::triggered, this, &QgsPalettedRendererWidget::loadColorTable );
QAction *exportToFile = mAdvancedMenu->addAction( trUtf8( "Export color map to file…" ) );
QAction *exportToFile = mAdvancedMenu->addAction( tr( "Export color map to file…" ) );
connect( exportToFile, &QAction::triggered, this, &QgsPalettedRendererWidget::saveColorTable );


Expand Down
4 changes: 2 additions & 2 deletions src/gui/symbology/qgsstylemanagerdialog.cpp
Expand Up @@ -64,7 +64,7 @@ QgsStyleManagerDialog::QgsStyleManagerDialog( QgsStyle *style, QWidget *parent )
mSplitter->restoreState( settings.value( QStringLiteral( "Windows/StyleV2Manager/splitter" ) ).toByteArray() );

tabItemType->setDocumentMode( true );
searchBox->setPlaceholderText( trUtf8( "Filter symbols…" ) );
searchBox->setPlaceholderText( tr( "Filter symbols…" ) );

connect( this, &QDialog::finished, this, &QgsStyleManagerDialog::onFinished );

Expand Down Expand Up @@ -248,7 +248,7 @@ void QgsStyleManagerDialog::tabItemType_currentChanged( int )
{
// when in Color Ramp tab, add menu to add item button and hide "Export symbols as PNG/SVG"
bool flag = currentItemType() != 3;
searchBox->setPlaceholderText( flag ? trUtf8( "Filter symbols…" ) : trUtf8( "Filter color ramps…" ) );
searchBox->setPlaceholderText( flag ? tr( "Filter symbols…" ) : tr( "Filter color ramps…" ) );
btnAddItem->setMenu( flag ? nullptr : mMenuBtnAddItemColorRamp );
actnExportAsPNG->setVisible( flag );
actnExportAsSVG->setVisible( flag );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgnewconnection.cpp
Expand Up @@ -115,7 +115,7 @@ void QgsPgNewConnection::accept()
if ( !hasAuthConfigID && mAuthSettings->storePasswordIsChecked( ) &&
QMessageBox::question( this,
tr( "Saving Passwords" ),
trUtf8( "WARNING: You have opted to save your password. It will be stored in unsecured plain text in your project files and in your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't save a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
tr( "WARNING: You have opted to save your password. It will be stored in unsecured plain text in your project files and in your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't save a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
QMessageBox::Ok | QMessageBox::Cancel ) == QMessageBox::Cancel )
{
return;
Expand Down

0 comments on commit 1eea857

Please sign in to comment.