Skip to content

Commit c440cec

Browse files
committedDec 29, 2016
Replace minimise by minimize
1 parent 7911994 commit c440cec

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎src/app/composer/qgscomposer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ void QgsComposer::changeEvent( QEvent* event )
878878
#endif
879879
case QEvent::WindowStateChange:
880880
{
881-
/* Listen out for window un-minimisation and restore composer map states.
881+
/* Listen out for window un-minimization and restore composer map states.
882882
* We can't use showEvent to detect this due to QT Bug 36675 (see #6085).
883883
*/
884884
QWindowStateChangeEvent* changeEv = static_cast< QWindowStateChangeEvent* >( event );
@@ -3471,7 +3471,7 @@ void QgsComposer::writeXml( QDomNode& parentNode, QDomDocument& doc )
34713471
QDomElement composerElem = doc.createElement( QStringLiteral( "Composer" ) );
34723472
composerElem.setAttribute( QStringLiteral( "title" ), mTitle );
34733473

3474-
//change preview mode of minimised / hidden maps before saving XML (show contents only on demand)
3474+
//change preview mode of minimized / hidden maps before saving XML (show contents only on demand)
34753475
QMap< QgsComposerMap*, int >::const_iterator mapIt = mMapsToRestore.constBegin();
34763476
for ( ; mapIt != mMapsToRestore.constEnd(); ++mapIt )
34773477
{

‎src/app/gps/qgsgpsinformationwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ void QgsGPSInformationWidget::displayGPSInformation( const QgsGPSInformation& in
703703
QgsRectangle myExtentLimit( mpCanvas->extent() );
704704
myExtentLimit.scale( mSpinMapExtentMultiplier->value() * 0.01 );
705705

706-
// only change the extents if the point is beyond the current extents to minimise repaints
706+
// only change the extents if the point is beyond the current extents to minimize repaints
707707
if ( radRecenterMap->isChecked() ||
708708
( radRecenterWhenNeeded->isChecked() && !myExtentLimit.contains( myPoint ) ) )
709709
{

‎src/core/qgscolorramp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ QList<QColor> QgsLimitedRandomColorRamp::randomColors( int count,
393393
for ( int i = 0; i < count; ++i )
394394
{
395395
//increment hue by golden ratio (approx 137.507 degrees)
396-
//as this minimises hue nearness as count increases
396+
//as this minimizes hue nearness as count increases
397397
//see http://basecase.org/env/on-rainbows for more details
398398
currentHueAngle += 137.50776;
399399
//scale hue to between hueMax and hueMin

‎src/plugins/evis/eventbrowser/evisgenericeventbrowsergui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ void eVisGenericEventBrowserGui::displayImage()
548548
//keep the extent the same just center the map canvas in the display so our feature is in the middle
549549
QgsRectangle myRect( myPoint.x() - ( mCanvas->extent().width() / 2 ), myPoint.y() - ( mCanvas->extent().height() / 2 ), myPoint.x() + ( mCanvas->extent().width() / 2 ), myPoint.y() + ( mCanvas->extent().height() / 2 ) );
550550

551-
// only change the extents if the point is beyond the current extents to minimise repaints
551+
// only change the extents if the point is beyond the current extents to minimize repaints
552552
if ( !mCanvas->extent().contains( myPoint ) )
553553
{
554554
mCanvas->setExtent( myRect );

‎src/ui/qgstextformatwidgetbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6274,7 +6274,7 @@ font-style: italic;</string>
62746274
<item>
62756275
<widget class="QLabel" name="label_14">
62766276
<property name="text">
6277-
<string>Minimise placing labels</string>
6277+
<string>Minimize placing labels</string>
62786278
</property>
62796279
</widget>
62806280
</item>

0 commit comments

Comments
 (0)
Please sign in to comment.