Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[georeferencer] Fix some HIG violations
  • Loading branch information
nyalldawson committed Jan 8, 2019
1 parent 6ed0b47 commit dada301
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/plugins/georeferencer/qgsmapcoordsdialog.cpp
Expand Up @@ -34,11 +34,11 @@ QgsMapCoordsDialog::QgsMapCoordsDialog( QgsMapCanvas *qgisCanvas, const QgsPoint

setAttribute( Qt::WA_DeleteOnClose );

mPointFromCanvasPushButton = new QPushButton( QIcon( ":/icons/default/mPushButtonPencil.png" ), tr( "From map canvas" ) );
mPointFromCanvasPushButton = new QPushButton( QIcon( ":/icons/default/mPushButtonPencil.png" ), tr( "From Map Canvas" ) );
mPointFromCanvasPushButton->setCheckable( true );
buttonBox->addButton( mPointFromCanvasPushButton, QDialogButtonBox::ActionRole );

// User can input either DD or DMS coords (from QGis mapcanav we take DD coords)
// User can input either DD or DMS coords (from QGis mapcanvas we take DD coords)
QgsDMSAndDDValidator *validator = new QgsDMSAndDDValidator( this );
leXCoord->setValidator( validator );
leYCoord->setValidator( validator );
Expand Down
12 changes: 6 additions & 6 deletions src/plugins/georeferencer/qgstransformsettingsdialogbase.ui
Expand Up @@ -30,7 +30,7 @@
<item row="1" column="0">
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Output settings</string>
<string>Output Settings</string>
</property>
<layout class="QGridLayout" name="gridLayout_5">
<item row="3" column="0" colspan="2">
Expand All @@ -54,7 +54,7 @@
</widget>
</item>
<item row="0" column="1">
<widget class="QgsFileWidget" name="mOutputRaster"/>
<widget class="QgsFileWidget" name="mOutputRaster" native="true"/>
</item>
<item row="4" column="0" colspan="2">
<widget class="QCheckBox" name="cbxZeroAsTrans">
Expand Down Expand Up @@ -176,10 +176,10 @@
</property>
<layout class="QGridLayout" name="gridLayout_6">
<item row="0" column="1">
<widget class="QgsFileWidget" name="mPdfMap"/>
<widget class="QgsFileWidget" name="mPdfMap" native="true"/>
</item>
<item row="1" column="1">
<widget class="QgsFileWidget" name="mPdfReport"/>
<widget class="QgsFileWidget" name="mPdfReport" native="true"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_6">
Expand Down Expand Up @@ -211,7 +211,7 @@
<item row="0" column="0">
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Transformation parameters</string>
<string>Transformation Parameters</string>
</property>
<layout class="QGridLayout" name="gridLayout_4">
<item row="0" column="0">
Expand Down Expand Up @@ -286,7 +286,7 @@
</widget>
</item>
<item row="2" column="1">
<widget class="QgsProjectionSelectionWidget" name="mCrsSelector">
<widget class="QgsProjectionSelectionWidget" name="mCrsSelector" native="true">
<property name="focusPolicy">
<enum>Qt::StrongFocus</enum>
</property>
Expand Down

0 comments on commit dada301

Please sign in to comment.