mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-22 00:14:55 -05:00
Fix typos
This commit is contained in:
parent
05e267ae55
commit
aa3480b717
2
INSTALL
2
INSTALL
@ -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
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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] )
|
||||
|
||||
@ -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();
|
||||
|
||||
@ -207,7 +207,7 @@ public:
|
||||
* 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.
|
||||
|
||||
@ -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})
|
||||
|
||||
|
||||
|
||||
@ -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" ) )
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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();
|
||||
|
||||
|
||||
@ -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();
|
||||
|
||||
|
||||
@ -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 ) );
|
||||
|
||||
@ -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
|
||||
|
||||
@ -48,7 +48,7 @@ class TestQgsRasterFileWriter(unittest.TestCase):
|
||||
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user