Skip to content

Commit

Permalink
Don't try to translate ellipsis character
Browse files Browse the repository at this point in the history
Fixes #31115
  • Loading branch information
nyalldawson committed Aug 6, 2019
1 parent 96253d2 commit c6b3c47
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/gui/processing/qgsprocessingmaplayercombobox.cpp
Expand Up @@ -42,7 +42,7 @@ QgsProcessingMapLayerComboBox::QgsProcessingMapLayerComboBox( const QgsProcessin
layout->setAlignment( mCombo, Qt::AlignTop );

mSelectButton = new QToolButton();
mSelectButton->setText( tr( "" ) );
mSelectButton->setText( QStringLiteral( "" ) );
mSelectButton->setToolTip( tr( "Select file" ) );
connect( mSelectButton, &QToolButton::clicked, this, &QgsProcessingMapLayerComboBox::triggerFileSelection );
layout->addWidget( mSelectButton );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/processing/qgsprocessingmatrixparameterdialog.cpp
Expand Up @@ -146,7 +146,7 @@ QgsProcessingMatrixParameterPanel::QgsProcessingMatrixParameterPanel( QWidget *p
hl->addWidget( mLineEdit, 1 );

mToolButton = new QToolButton();
mToolButton->setText( tr( "" ) );
mToolButton->setText( QStringLiteral( "" ) );
hl->addWidget( mToolButton );

setLayout( hl );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/processing/qgsprocessingwidgetwrapperimpl.cpp
Expand Up @@ -1659,7 +1659,7 @@ QgsProcessingEnumPanelWidget::QgsProcessingEnumPanelWidget( QWidget *parent, con
hl->addWidget( mLineEdit, 1 );

mToolButton = new QToolButton();
mToolButton->setText( tr( "" ) );
mToolButton->setText( QStringLiteral( "" ) );
hl->addWidget( mToolButton );

setLayout( hl );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsfilecontentsourcelineedit.cpp
Expand Up @@ -35,7 +35,7 @@ QgsAbstractFileContentSourceLineEdit::QgsAbstractFileContentSourceLineEdit( QWid
mFileLineEdit = new QgsFilterLineEdit( this );
mFileLineEdit->setShowClearButton( true );
mFileToolButton = new QToolButton( this );
mFileToolButton->setText( tr( "" ) );
mFileToolButton->setText( QStringLiteral( "" ) );
layout->addWidget( mFileLineEdit, 1 );
layout->addWidget( mFileToolButton );
setLayout( layout );
Expand Down

0 comments on commit c6b3c47

Please sign in to comment.