Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz authored and nyalldawson committed Jul 16, 2019
1 parent 05e267a commit aa3480b
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion INSTALL
Expand Up @@ -526,7 +526,7 @@ Running QGIS from within MSVC:
Edit the properties of the project ALL_BUILD:
Debugging -> Command -> D:\OSGeo4W64\QGIS\ms-windows\osgeo4w\build-qgis-test-x86_64\output\bin\RelWithDebInfo\qgis.exe
Run.
Ignore the "These projects are out of date" message, it appeares even if no files were was changed.
Ignore the "These projects are out of date" message, it appears even if no files were changed.

Old alternative method that might still work using cmake-gui:
Create a 'build' directory somewhere. This will be where all the build output
Expand Down
2 changes: 1 addition & 1 deletion doc/msvc.t2t
Expand Up @@ -103,7 +103,7 @@ Running QGIS from within MSVC:
Edit the properties of the project ALL_BUILD:
Debugging -> Command -> D:\OSGeo4W64\QGIS\ms-windows\osgeo4w\build-qgis-test-x86_64\output\bin\RelWithDebInfo\qgis.exe
Run.
Ignore the "These projects are out of date" message, it appeares even if no files were was changed.
Ignore the "These projects are out of date" message, it appears even if no files were changed.


Old alternative method that might still work using cmake-gui:
Expand Down
2 changes: 1 addition & 1 deletion mac/development.md
Expand Up @@ -208,7 +208,7 @@ brew tap osgeo/osgeo4mac
brew unlink qt
brew unlink pyqt

# Older txt2tags generator for INSTALL doc breakes build and chokes on Python 3
# Older txt2tags generator for INSTALL doc breaks build and chokes on Python 3
brew unlink txt2tags

# Install and verify GDAL/OGR with decent driver support
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsleastsquares.cpp
Expand Up @@ -176,7 +176,7 @@ void QgsLeastSquares::affine( QVector<QgsPointXY> mapCoords,
/**
* Scales the given coordinates so that the center of gravity is at the origin and the mean distance to the origin is sqrt(2).
*
* Also returns 3x3 homogenous matrices which can be used to normalize and de-normalize coordinates.
* Also returns 3x3 homogeneous matrices which can be used to normalize and de-normalize coordinates.
*/
void normalizeCoordinates( const QVector<QgsPointXY> &coords, QVector<QgsPointXY> &normalizedCoords,
double normalizeMatrix[9], double denormalizeMatrix[9] )
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/globe/globe_plugin.cpp
Expand Up @@ -767,7 +767,7 @@ void GlobePlugin::setupProxy()
qputenv( "OSGEARTH_CURL_PROXYAUTH", auth.toLocal8Bit() );
}
//TODO: settings.value("/proxyType")
//TODO: URL exlusions
//TODO: URL exclusions
osgEarth::HTTPClient::setProxySettings( proxySettings );
}
settings.endGroup();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qtermwidget/kprocess.h
Expand Up @@ -207,7 +207,7 @@ class KProcess : public QProcess
* respective functions provided by QProcess.
*
* If KProcess determines that the command does not really need a
* shell, it will trasparently execute it without one for performance
* shell, it will transparently execute it without one for performance
* reasons.
*
* This function must be called before starting the process, obviously.
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/scripts/v.class.mlpy.qgis.py
Expand Up @@ -197,7 +197,7 @@ def fatal_noEnoughColumns(mapName, ncols, required):

def fatal_noClassColumn(mapName, columnName):
grass.fatal(_("Vector map <%(map)s> does not have"
" the column <%(col)s> cointaining class")
" the column <%(col)s> containing class")
% {'map': mapName, 'col': columnName})


Expand Down
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrassvectormaplayer.cpp
Expand Up @@ -673,7 +673,7 @@ void QgsGrassVectorMapLayer::addColumn( const QgsField &field, QString &error )
return;
}
}
else // the table alread exists
else // the table already exists
{
QString type = field.typeName();
if ( type == QLatin1String( "varchar" ) )
Expand Down
2 changes: 1 addition & 1 deletion src/quickgui/plugin/qgsquickfeatureform.qml
Expand Up @@ -85,7 +85,7 @@ Item {
property QgsQuick.Project project

/**
* The function used for a component loader to find qml edit widget componets used in form.
* The function used for a component loader to find qml edit widget components used in form.
*/
property var loadWidgetFn: QgsQuick.Utils.getEditorComponentSource

Expand Down
2 changes: 1 addition & 1 deletion tests/src/analysis/testqgsmeshcalculator.cpp
Expand Up @@ -219,7 +219,7 @@ void TestQgsMeshCalculator::calcWithLayers()
QgsRectangle extent( 783235, 3348110, 783350, 3347960 );

QTemporaryFile tmpFile;
tmpFile.open(); // fileName is no avialable until open
tmpFile.open(); // fileName is not available until open
QString tmpName = tmpFile.fileName();
tmpFile.close();

Expand Down
2 changes: 1 addition & 1 deletion tests/src/analysis/testqgsrastercalculator.cpp
Expand Up @@ -459,7 +459,7 @@ void TestQgsRasterCalculator::calcWithLayers()
QgsRectangle extent( 783235, 3348110, 783350, 3347960 );

QTemporaryFile tmpFile;
tmpFile.open(); // fileName is no avialable until open
tmpFile.open(); // fileName is not available until open
QString tmpName = tmpFile.fileName();
tmpFile.close();

Expand Down
2 changes: 1 addition & 1 deletion tests/src/core/testqgsgeometry.cpp
Expand Up @@ -6696,7 +6696,7 @@ void TestQgsGeometry::triangle()
QVERIFY( !t1.exteriorRing() );
QVERIFY( !t1.interiorRing( 0 ) );

// degenarate triangles
// degenerate triangles
QgsTriangle invalid( QgsPointXY( 0, 0 ), QgsPointXY( 0, 0 ), QgsPointXY( 10, 10 ) );
QVERIFY( !invalid.isEmpty() );
invalid = QgsTriangle( QPointF( 0, 0 ), QPointF( 0, 0 ), QPointF( 10, 10 ) );
Expand Down
2 changes: 1 addition & 1 deletion tests/src/core/testqgsrasterfilewriter.cpp
Expand Up @@ -125,7 +125,7 @@ bool TestQgsRasterFileWriter::writeTest( const QString &rasterName )

// I don't see any method to get only a name without opening file
QTemporaryFile tmpFile;
tmpFile.open(); // fileName is no avialable until open
tmpFile.open(); // fileName is not available until open
QString tmpName = tmpFile.fileName();
tmpFile.close();
// do not remove when class is destroyd so that we can read the file and see difference
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsrasterfilewriter.py
Expand Up @@ -48,7 +48,7 @@ def write(self, theRasterName):
provider = rasterLayer.dataProvider()

tmpFile = QTemporaryFile()
tmpFile.open() # fileName is no avialable until open
tmpFile.open() # fileName is not available until open
tmpName = tmpFile.fileName()
tmpFile.close()
# do not remove when class is destroyed so that we can read
Expand Down

0 comments on commit aa3480b

Please sign in to comment.