Skip to content

Commit

Permalink
Capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 31, 2018
1 parent 9983ba3 commit 95e8960
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/symbology/qgsstyleexportimportdialog.cpp
Expand Up @@ -44,11 +44,11 @@ QgsStyleExportImportDialog::QgsStyleExportImportDialog( QgsStyle *style, QWidget

// additional buttons
QPushButton *pb = nullptr;
pb = new QPushButton( tr( "Select all" ) );
pb = new QPushButton( tr( "Select All" ) );
buttonBox->addButton( pb, QDialogButtonBox::ActionRole );
connect( pb, &QAbstractButton::clicked, this, &QgsStyleExportImportDialog::selectAll );

pb = new QPushButton( tr( "Clear selection" ) );
pb = new QPushButton( tr( "Clear Selection" ) );
buttonBox->addButton( pb, QDialogButtonBox::ActionRole );
connect( pb, &QAbstractButton::clicked, this, &QgsStyleExportImportDialog::clearSelection );

Expand Down Expand Up @@ -97,7 +97,7 @@ QgsStyleExportImportDialog::QgsStyleExportImportDialog( QgsStyle *style, QWidget
mFavorite->setHidden( true );
mIgnoreXMLTags->setHidden( true );

pb = new QPushButton( tr( "Select by group" ) );
pb = new QPushButton( tr( "Select by Group" ) );
buttonBox->addButton( pb, QDialogButtonBox::ActionRole );
connect( pb, &QAbstractButton::clicked, this, &QgsStyleExportImportDialog::selectByGroup );
tagLabel->setHidden( true );
Expand Down

0 comments on commit 95e8960

Please sign in to comment.