mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-08 00:05:09 -04:00
Fix typos
This commit is contained in:
parent
32b1603c81
commit
02ea2d7703
@ -21,7 +21,7 @@ This page tries to maintain a list with incompatible changes that happened in pr
|
|||||||
QGIS 3.0 {#qgis_api_break_3_0}
|
QGIS 3.0 {#qgis_api_break_3_0}
|
||||||
========
|
========
|
||||||
|
|
||||||
Version 3.0 brings changes to many underlying dependancies which QGIS is built upon. Any existing PyQGIS code will
|
Version 3.0 brings changes to many underlying dependencies which QGIS is built upon. Any existing PyQGIS code will
|
||||||
need to be updated to address the changes made within these libraries.
|
need to be updated to address the changes made within these libraries.
|
||||||
|
|
||||||
Python 3.0
|
Python 3.0
|
||||||
|
@ -21,7 +21,7 @@ class QgsRasterCalculator
|
|||||||
//! Result of the calculation
|
//! Result of the calculation
|
||||||
enum Result
|
enum Result
|
||||||
{
|
{
|
||||||
Success, /*!< Calculation sucessful */
|
Success, /*!< Calculation successful */
|
||||||
CreateOutputError, /*!< Error creating output data file */
|
CreateOutputError, /*!< Error creating output data file */
|
||||||
InputLayerError, /*!< Error reading input layer */
|
InputLayerError, /*!< Error reading input layer */
|
||||||
Cancelled, /*!< User cancelled calculation */
|
Cancelled, /*!< User cancelled calculation */
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* \class QgsGeometrySnapper
|
* \class QgsGeometrySnapper
|
||||||
* \ingroup analysis
|
* \ingroup analysis
|
||||||
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
|
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
|
||||||
* different refence layer. Vertices in the geometries will be modified to
|
* different reference layer. Vertices in the geometries will be modified to
|
||||||
* match the reference layer features within a specified snap tolerance.
|
* match the reference layer features within a specified snap tolerance.
|
||||||
* \note added in QGIS 3.0
|
* \note added in QGIS 3.0
|
||||||
*/
|
*/
|
||||||
|
@ -72,7 +72,7 @@ class QgsComposerNodesItem: QgsComposerItem
|
|||||||
*/
|
*/
|
||||||
int selectedNode();
|
int selectedNode();
|
||||||
|
|
||||||
/** Unselect a node.
|
/** Deselect a node.
|
||||||
*/
|
*/
|
||||||
void unselectNode();
|
void unselectNode();
|
||||||
|
|
||||||
|
@ -414,7 +414,7 @@ class QgsVectorFileWriter
|
|||||||
static QStringList defaultLayerOptions( const QString& driverName );
|
static QStringList defaultLayerOptions( const QString& driverName );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return edition capabilites for an existing dataset name.
|
* Return edition capabilities for an existing dataset name.
|
||||||
* @note added in QGIS 3.0
|
* @note added in QGIS 3.0
|
||||||
*/
|
*/
|
||||||
static EditionCapabilities editionCapabilities( const QString& datasetName );
|
static EditionCapabilities editionCapabilities( const QString& datasetName );
|
||||||
|
@ -111,7 +111,7 @@ class QgsRendererRegistry
|
|||||||
|
|
||||||
//! Removes a renderer from registry.
|
//! Removes a renderer from registry.
|
||||||
//! @param rendererName name of renderer to remove from registry
|
//! @param rendererName name of renderer to remove from registry
|
||||||
//! @returns true if renderer was sucessfully removed, or false if matching
|
//! @returns true if renderer was successfully removed, or false if matching
|
||||||
//! renderer could not be found
|
//! renderer could not be found
|
||||||
bool removeRenderer( const QString& rendererName );
|
bool removeRenderer( const QString& rendererName );
|
||||||
|
|
||||||
|
@ -192,6 +192,7 @@ extention:extension
|
|||||||
failuer:failure
|
failuer:failure
|
||||||
familar:familiar
|
familar:familiar
|
||||||
fatser:faster
|
fatser:faster
|
||||||
|
feture:feature
|
||||||
fetaures:features
|
fetaures:features
|
||||||
forse:force
|
forse:force
|
||||||
fortan:fortran
|
fortan:fortran
|
||||||
@ -436,6 +437,8 @@ subdirectoires:subdirectories
|
|||||||
succesful:successful
|
succesful:successful
|
||||||
succesfully:successfully
|
succesfully:successfully
|
||||||
sucess:success
|
sucess:success
|
||||||
|
sucessful:successful
|
||||||
|
sucessfully:successfully
|
||||||
superceded:superseded
|
superceded:superseded
|
||||||
superflous:superfluous
|
superflous:superfluous
|
||||||
superseeded:superseded
|
superseeded:superseded
|
||||||
|
@ -44,7 +44,7 @@ class ANALYSIS_EXPORT QgsRasterCalculator
|
|||||||
//! Result of the calculation
|
//! Result of the calculation
|
||||||
enum Result
|
enum Result
|
||||||
{
|
{
|
||||||
Success = 0, //!< Calculation sucessful
|
Success = 0, //!< Calculation successful
|
||||||
CreateOutputError = 1, //!< Error creating output data file
|
CreateOutputError = 1, //!< Error creating output data file
|
||||||
InputLayerError = 2, //!< Error reading input layer
|
InputLayerError = 2, //!< Error reading input layer
|
||||||
Cancelled = 3, //!< User cancelled calculation
|
Cancelled = 3, //!< User cancelled calculation
|
||||||
|
@ -30,7 +30,7 @@ class QgsVectorLayer;
|
|||||||
* \class QgsGeometrySnapper
|
* \class QgsGeometrySnapper
|
||||||
* \ingroup analysis
|
* \ingroup analysis
|
||||||
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
|
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
|
||||||
* different refence layer. Vertices in the geometries will be modified to
|
* different reference layer. Vertices in the geometries will be modified to
|
||||||
* match the reference layer features within a specified snap tolerance.
|
* match the reference layer features within a specified snap tolerance.
|
||||||
* \note added in QGIS 3.0
|
* \note added in QGIS 3.0
|
||||||
*/
|
*/
|
||||||
|
@ -76,7 +76,7 @@ class APP_EXPORT QgsMapToolSimplify: public QgsMapToolEdit
|
|||||||
|
|
||||||
void setToleranceUnits( int units );
|
void setToleranceUnits( int units );
|
||||||
|
|
||||||
//! Slot to store feture after simplification
|
//! Slot to store feature after simplification
|
||||||
void storeSimplified();
|
void storeSimplified();
|
||||||
|
|
||||||
void clearSelection();
|
void clearSelection();
|
||||||
|
@ -111,7 +111,7 @@ class CORE_EXPORT QgsComposerNodesItem: public QgsComposerItem
|
|||||||
*/
|
*/
|
||||||
int selectedNode() { return mSelectedNode; }
|
int selectedNode() { return mSelectedNode; }
|
||||||
|
|
||||||
/** Unselect a node.
|
/** Deselect a node.
|
||||||
*/
|
*/
|
||||||
void unselectNode() { mSelectedNode = -1; }
|
void unselectNode() { mSelectedNode = -1; }
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ QgsQtLocationConnection::~QgsQtLocationConnection()
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Needed to make connection detectable (half HACK)
|
//Needed to make connection detectable (half HACK)
|
||||||
//this signals that the device has started the GPS sucessfully,
|
//this signals that the device has started the GPS successfully,
|
||||||
//not that it has a fix yet.
|
//not that it has a fix yet.
|
||||||
void QgsQtLocationConnection::broadcastConnectionAvailable()
|
void QgsQtLocationConnection::broadcastConnectionAvailable()
|
||||||
{
|
{
|
||||||
|
@ -491,7 +491,7 @@ class CORE_EXPORT QgsVectorFileWriter
|
|||||||
static OGRwkbGeometryType ogrTypeFromWkbType( QgsWkbTypes::Type type );
|
static OGRwkbGeometryType ogrTypeFromWkbType( QgsWkbTypes::Type type );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return edition capabilites for an existing dataset name.
|
* Return edition capabilities for an existing dataset name.
|
||||||
* @note added in QGIS 3.0
|
* @note added in QGIS 3.0
|
||||||
*/
|
*/
|
||||||
static EditionCapabilities editionCapabilities( const QString& datasetName );
|
static EditionCapabilities editionCapabilities( const QString& datasetName );
|
||||||
|
@ -193,7 +193,7 @@ class CORE_EXPORT QgsRendererRegistry
|
|||||||
|
|
||||||
//! Removes a renderer from registry.
|
//! Removes a renderer from registry.
|
||||||
//! @param rendererName name of renderer to remove from registry
|
//! @param rendererName name of renderer to remove from registry
|
||||||
//! @returns true if renderer was sucessfully removed, or false if matching
|
//! @returns true if renderer was successfully removed, or false if matching
|
||||||
//! renderer could not be found
|
//! renderer could not be found
|
||||||
bool removeRenderer( const QString& rendererName );
|
bool removeRenderer( const QString& rendererName );
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
* \class eVisDatabaseConnectionGui
|
* \class eVisDatabaseConnectionGui
|
||||||
* \brief GUI class for database connections
|
* \brief GUI class for database connections
|
||||||
* This class provides the GUI component for setting up a database connection and making a sql query.
|
* This class provides the GUI component for setting up a database connection and making a sql query.
|
||||||
* This class effectively provides access to a wide variety of database types. Upon a sucessful query,
|
* This class effectively provides access to a wide variety of database types. Upon a successful query,
|
||||||
* the results are stored in a tabdelimited file the loaded into qgis using the demlimitedtext data provider
|
* the results are stored in a tabdelimited file the loaded into qgis using the demlimitedtext data provider
|
||||||
*/
|
*/
|
||||||
class eVisDatabaseConnectionGui : public QDialog, private Ui::eVisDatabaseConnectionGuiBase
|
class eVisDatabaseConnectionGui : public QDialog, private Ui::eVisDatabaseConnectionGuiBase
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
<item row="2" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QPushButton" name="mHideAllButton">
|
<widget class="QPushButton" name="mHideAllButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Unselect all</string>
|
<string>Deselect all</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user