Skip to content

Commit b4ba4c8

Browse files
committedMay 2, 2013
fix spelling errors
1 parent d9fe893 commit b4ba4c8

28 files changed

+52
-52
lines changed
 

‎Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1688,7 +1688,7 @@ UML_LOOK = NO
16881688
# the class node. If there are many fields or methods and many nodes the
16891689
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
16901690
# threshold limits the number of items for each type to make the size more
1691-
# managable. Set this to 0 for no limit. Note that the threshold may be
1691+
# manageable. Set this to 0 for no limit. Note that the threshold may be
16921692
# exceeded by 50% before the limit is enforced.
16931693

16941694
UML_LIMIT_NUM_FIELDS = 10

‎i18n/qgis_de.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12876,13 +12876,6 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?</transl
1287612876
<source>Unable to write into the directory</source>
1287712877
<translation>Konnte nicht in das Verzeichnis schreiben</translation>
1287812878
</message>
12879-
<message>
12880-
<location filename="../src/app/composer/qgscomposer.cpp" line="694"/>
12881-
<location filename="../src/app/composer/qgscomposer.cpp" line="1013"/>
12882-
<location filename="../src/app/composer/qgscomposer.cpp" line="1181"/>
12883-
<source>The given output directory is not writeable. Cancelling.</source>
12884-
<translation>Im Ausgabeverzeichnis konnte nicht geschriebene werden. Breche ab.</translation>
12885-
</message>
1288612879
<message>
1288712880
<location filename="../src/app/composer/qgscomposer.cpp" line="732"/>
1288812881
<location filename="../src/app/composer/qgscomposer.cpp" line="841"/>
@@ -12978,6 +12971,13 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?</transl
1297812971
<source>Print Composers</source>
1297912972
<translation>Druckzusammenstellungen</translation>
1298012973
</message>
12974+
<message>
12975+
<location filename="../src/app/composer/qgscomposer.cpp" line="694"/>
12976+
<location filename="../src/app/composer/qgscomposer.cpp" line="1013"/>
12977+
<location filename="../src/app/composer/qgscomposer.cpp" line="1181"/>
12978+
<source>The given output directory is not writable. Cancelling.</source>
12979+
<translation>Im Ausgabeverzeichnis konnte nicht geschrieben werden. Breche ab.</translation>
12980+
</message>
1298112981
<message>
1298212982
<location filename="../src/app/composer/qgscomposer.cpp" line="963"/>
1298312983
<source>Directory where to save image files</source>
@@ -43411,7 +43411,7 @@ p, li { white-space: pre-wrap; }
4341143411
</message>
4341243412
<message>
4341343413
<location filename="../src/gui/symbology-ng/qgsvectorgradientcolorrampv2dialog.cpp" line="51"/>
43414-
<source>Continous</source>
43414+
<source>Continuous</source>
4341543415
<translation>Fortlaufend</translation>
4341643416
</message>
4341743417
<message>

‎python/console/console_editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def _runSubProcess(self, filename, tmp=False):
448448
if dir not in sys.path:
449449
sys.path.append(dir)
450450
try:
451-
## set creationflags for runnning command without shell window
451+
## set creationflags for running command without shell window
452452
if sys.platform.startswith('win'):
453453
p = subprocess.Popen(['python', str(filename)], shell=False, stdin=subprocess.PIPE,
454454
stderr=subprocess.PIPE, stdout=subprocess.PIPE, creationflags=0x08000000)

‎python/console/help/help.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<tr>
6464
<td>
6565
<p align="justify">
66-
<span id="headerSubjectA">The console is splitted in two main panes, output and input areas.
66+
<span id="headerSubjectA">The console is split in two main panes, output and input areas.
6767
Both are resizable by using the horizontal splitter.
6868
Output area pane is a widget read-only which shows the commands output.
6969
You can drag and drop or copy text into input area (no matter if selected text contains >>> or ...).

‎python/console/help/i18n/en_US.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ i18n_dict = {
55
use qgis.utils.iface object (instance of QgisInterface class). \
66
To import the class QgisInterface can also use the dedicated \
77
button on the toolbar on the left.",
8-
"header.subject.A" : "The console is splitted in two main panes, output and input areas. \
8+
"header.subject.A" : "The console is split in two main panes, output and input areas. \
99
Both are resizable by using the horizontal splitter. \
1010
Output area pane is a widget read-only which shows the commands output. \
1111
You can drag and drop or copy text into input area \

‎python/plugins/sextante/admintools/httplib2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def _parse_cache_control(headers):
287287
# Whether to use a strict mode to parse WWW-Authenticate headers
288288
# Might lead to bad results in case of ill-formed header value,
289289
# so disabled by default, falling back to relaxed parsing.
290-
# Set to true to turn on, usefull for testing servers.
290+
# Set to true to turn on, useful for testing servers.
291291
USE_WWW_AUTH_STRICT_PARSING = 0
292292

293293
# In regex below:

‎python/plugins/sextante/algs/AddTableField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def defineCharacteristics(self):
6161
self.addParameter(ParameterVector(self.INPUT_LAYER, "Input layer", ParameterVector.VECTOR_TYPE_ANY, False))
6262
self.addParameter(ParameterString(self.FIELD_NAME, "Field name"))
6363
self.addParameter(ParameterSelection(self.FIELD_TYPE, "Field type", self.TYPE_NAMES))
64-
self.addParameter(ParameterNumber(self.FIELD_LENGTH, "Field lenght", 1, 255, 10))
64+
self.addParameter(ParameterNumber(self.FIELD_LENGTH, "Field length", 1, 255, 10))
6565
self.addParameter(ParameterNumber(self.FIELD_PRECISION, "Field precision", 0, 10, 0))
6666
self.addOutput(OutputVector(self.OUTPUT_LAYER, "Output layer"))
6767

‎python/plugins/sextante/algs/FieldsCalculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def defineCharacteristics(self):
6161
self.addParameter(ParameterVector(self.INPUT_LAYER, "Input layer", ParameterVector.VECTOR_TYPE_ANY, False))
6262
self.addParameter(ParameterString(self.FIELD_NAME, "Result field name"))
6363
self.addParameter(ParameterSelection(self.FIELD_TYPE, "Field type", self.TYPE_NAMES))
64-
self.addParameter(ParameterNumber(self.FIELD_LENGTH, "Field lenght", 1, 255, 10))
64+
self.addParameter(ParameterNumber(self.FIELD_LENGTH, "Field length", 1, 255, 10))
6565
self.addParameter(ParameterNumber(self.FIELD_PRECISION, "Field precision", 0, 10, 0))
6666
self.addParameter(ParameterString(self.FORMULA, "Formula"))
6767
self.addOutput(OutputVector(self.OUTPUT_LAYER, "Output layer"))

‎python/plugins/sextante/modeler/ModelerAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self):
7878

7979
#algorithms that each algorithm depends on.
8080
#This is just a list of dependencies not set by outputs and inputs
81-
#but explicitely entered instead, meaning that an algorithm must ''wait''
81+
#but explicitly entered instead, meaning that an algorithm must ''wait''
8282
#for another to finish
8383
#Each entry is a list with algorithm indexes
8484
self.dependencies = []

‎src/app/composer/qgscomposer.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -687,11 +687,11 @@ void QgsComposer::on_mActionExportAsPDF_triggered()
687687
{
688688
return;
689689
}
690-
// test directory (if it exists and is writeable)
690+
// test directory (if it exists and is writable)
691691
if ( !QDir( outputDir ).exists() || !QFileInfo( outputDir ).isWritable() )
692692
{
693693
QMessageBox::warning( 0, tr( "Unable to write into the directory" ),
694-
tr( "The given output directory is not writeable. Cancelling." ),
694+
tr( "The given output directory is not writable. Cancelling." ),
695695
QMessageBox::Ok,
696696
QMessageBox::Ok );
697697
return;
@@ -1006,11 +1006,11 @@ void QgsComposer::on_mActionExportAsImage_triggered()
10061006
{
10071007
return;
10081008
}
1009-
// test directory (if it exists and is writeable)
1009+
// test directory (if it exists and is writable)
10101010
if ( !QDir( dir ).exists() || !QFileInfo( dir ).isWritable() )
10111011
{
10121012
QMessageBox::warning( 0, tr( "Unable to write into the directory" ),
1013-
tr( "The given output directory is not writeable. Cancelling." ),
1013+
tr( "The given output directory is not writable. Cancelling." ),
10141014
QMessageBox::Ok,
10151015
QMessageBox::Ok );
10161016
return;
@@ -1174,11 +1174,11 @@ void QgsComposer::on_mActionExportAsSVG_triggered()
11741174
{
11751175
return;
11761176
}
1177-
// test directory (if it exists and is writeable)
1177+
// test directory (if it exists and is writable)
11781178
if ( !QDir( outputDir ).exists() || !QFileInfo( outputDir ).isWritable() )
11791179
{
11801180
QMessageBox::warning( 0, tr( "Unable to write into the directory" ),
1181-
tr( "The given output directory is not writeable. Cancelling." ),
1181+
tr( "The given output directory is not writable. Cancelling." ),
11821182
QMessageBox::Ok,
11831183
QMessageBox::Ok );
11841184
return;

‎src/app/qgsbrowserdockwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class QgsBrowserTreeFilterProxyModel : public QSortFilterProxyModel
149149

150150
QgsBrowserModel* mModel;
151151
QString mFilter; //filter string provided
152-
QVector<QRegExp> mREList; //list of filters, seperated by "|"
152+
QVector<QRegExp> mREList; //list of filters, separated by "|"
153153
QRegExp::PatternSyntax mPatternSyntax;
154154

155155
bool filterAcceptsString( const QString & value ) const

‎src/core/composer/qgscomposition.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class CORE_EXPORT QgsComposition: public QGraphicsScene
218218
@param mapsToRestore for reading from project file: set preview move 'rectangle' to all maps and save the preview states to show composer maps on demand
219219
@param addUndoCommands insert AddItem commands if true (e.g. for copy/paste)
220220
@param pos item position. Optional, take position from xml if 0
221-
@param pasteInPlace wheter the position should be kept but mapped to the page origin. (the page is the page under to the mouse cursor)
221+
@param pasteInPlace whether the position should be kept but mapped to the page origin. (the page is the page under to the mouse cursor)
222222
@note not available in python bindings
223223
*/
224224
void addItemsFromXML( const QDomElement& elem, const QDomDocument& doc, QMap< QgsComposerMap*, int >* mapsToRestore = 0,

‎src/core/qgsgmlschema.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class CORE_EXPORT QgsGmlSchema: public QObject
156156
/** Find GML base type for complex type of given name
157157
* @param element input element
158158
* @param name complex type name
159-
* @return name of GML base type without NS, e.g. AbstractFeatureType or empty string if not pased on GML type
159+
* @return name of GML base type without NS, e.g. AbstractFeatureType or empty string if not passed on GML type
160160
*/
161161
QString xsdComplexTypeGmlBaseType( const QDomElement &element, const QString & name );
162162

‎src/core/qgsmaprenderer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ void QgsMapRenderer::render( QPainter* painter, double* forceWidthScale )
511511
}
512512
}
513513

514-
// If we are drawing with an alternative blending mode then we need to render to a seperate image
514+
// If we are drawing with an alternative blending mode then we need to render to a separate image
515515
// before compositing this on the map. This effectively flattens the layer and prevents
516516
// blending occuring between objects on the layer
517517
// (this is not required for raster layers or when layer caching is enabled, since that has the same effect)

‎src/core/qgsvectorlayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
12841284
/** Is emitted, when editing on this layer has started*/
12851285
void editingStarted();
12861286

1287-
/** Is emitted, when edited changes succesfully have been written to the data provider */
1287+
/** Is emitted, when edited changes successfully have been written to the data provider */
12881288
void editingStopped();
12891289

12901290
/** Is emitted, before changes are commited to the data provider */

‎src/core/qgsvectorlayereditbuffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void QgsVectorLayerEditBuffer::updateChangedAttributes( QgsFeature &f )
7878
attrs.remove( mDeletedAttributeIds[idx] );
7979
}
8080

81-
// adjust size to accomodate added attributes
81+
// adjust size to accommodate added attributes
8282
attrs.resize( attrs.count() + mAddedAttributes.count() );
8383

8484
// update changed attributes

‎src/core/raster/qgsrasterrenderer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class QPainter;
2929
class QgsRasterTransparency;
3030

3131
/** \ingroup core
32-
* Raster renderer pipe that applies colours to a raster.
32+
* Raster renderer pipe that applies colors to a raster.
3333
*/
3434
class CORE_EXPORT QgsRasterRenderer : public QgsRasterInterface
3535
{

‎src/core/symbology-ng/qgssymbollayerv2utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class CORE_EXPORT QgsSymbolLayerV2Utils
170170
Qt::PenCapStyle capStyle = Qt::FlatCap,
171171
double offset = 0.0,
172172
const QVector<qreal>* dashPattern = 0 );
173-
/**Create ogr feature syle string for brush
173+
/**Create ogr feature style string for brush
174174
@param fillColr fill color*/
175175
static QString ogrFeatureStyleBrush( const QColor& fillColr );
176176

‎src/gui/qgsblendmodecombobox.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ QgsBlendModeComboBox::~QgsBlendModeComboBox()
3434
}
3535

3636
/* Returns a QStringList of the translated blend modes
37-
* "-" is used to indicate the position of a seperator in the list
37+
* "-" is used to indicate the position of a separator in the list
3838
* This list is designed to emulate GIMP's layer modes, where
3939
* blending modes are grouped by their effect (lightening, darkening, etc)
4040
*/
@@ -80,12 +80,12 @@ void QgsBlendModeComboBox::updateModes()
8080
{
8181
if ( *blendModeIt == "-" )
8282
{
83-
// Add seperator
83+
// Add separator
8484
insertSeparator( index );
8585
}
8686
else
8787
{
88-
// Not a seperator, so store indexes for translation
88+
// Not a separator, so store indexes for translation
8989
// between blend modes and combo box item index
9090
addItem( *blendModeIt );
9191
mListIndexToBlendMode[ index ] = blendModeIndex;

‎src/gui/symbology-ng/qgsstylev2managerdialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ bool QgsStyleV2ManagerDialog::addSymbol()
355355
// get symbol design
356356
// NOTE : Set the parent widget as "this" to notify the Symbol selector
357357
// that, it is being called by Style Manager, so recursive calling
358-
// of style manger and symbol slector can be arrested
359-
// Look Also: editSymbol()
358+
// of style manager and symbol selector can be arrested
359+
// See also: editSymbol()
360360
QgsSymbolV2SelectorDialog dlg( symbol, mStyle, NULL, this );
361361
if ( dlg.exec() == 0 )
362362
{

‎src/gui/symbology-ng/qgsvectorgradientcolorrampv2dialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ QgsVectorGradientColorRampV2Dialog::QgsVectorGradientColorRampV2Dialog( QgsVecto
4848
// fill type combobox
4949
cboType->blockSignals( true );
5050
cboType->addItem( tr( "Discrete" ) );
51-
cboType->addItem( tr( "Continous" ) );
51+
cboType->addItem( tr( "Continuous" ) );
5252
if ( mRamp->isDiscrete() )
5353
cboType->setCurrentIndex( 0 );
5454
else

‎src/mapserver/qgswfsserver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ QDomElement QgsWFSServer::createFeatureGML2( QgsFeature* feat, QDomDocument& doc
17151715
{
17161716

17171717
QString attributeName = fields[i].name();
1718-
//skip attribute if is explicitely excluded from WFS publication
1718+
//skip attribute if is explicitly excluded from WFS publication
17191719
if ( excludedAttributes.contains( attributeName ) )
17201720
{
17211721
continue;
@@ -1773,7 +1773,7 @@ QDomElement QgsWFSServer::createFeatureGML3( QgsFeature* feat, QDomDocument& doc
17731773
{
17741774

17751775
QString attributeName = fields[i].name();
1776-
//skip attribute if is explicitely excluded from WFS publication
1776+
//skip attribute if is explicitly excluded from WFS publication
17771777
if ( excludedAttributes.contains( attributeName ) )
17781778
{
17791779
continue;

‎src/mapserver/qgswmsserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ int QgsWMSServer::featureInfoFromVectorLayer( QgsVectorLayer* layer,
13091309
featureAttributes = feature.attributes();
13101310
for ( int i = 0; i < featureAttributes.count(); ++i )
13111311
{
1312-
//skip attribute if it is explicitely excluded from WMS publication
1312+
//skip attribute if it is explicitly excluded from WMS publication
13131313
if ( excludedAttributes.contains( fields[i].name() ) )
13141314
{
13151315
continue;

‎src/plugins/topology/dockModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ QVariant DockModel::data( const QModelIndex &index, int role ) const
8181
break;
8282
case 1:
8383
if ( !mErrorlist[row]->featurePairs().first().layer )
84-
val = QString( "Unkown" );
84+
val = QString( "Unknown" );
8585
else
8686
val = mErrorlist[row]->featurePairs().first().layer->name();
8787
break;

‎src/plugins/topology/topolError.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class TopolError
135135
*/
136136
virtual QList<FeatureLayer> featurePairs() { return mFeaturePairs; }
137137
/**
138-
* Returns the names of posible fixes
138+
* Returns the names of possible fixes
139139
*/
140140
virtual QStringList fixNames() { return mFixMap.keys(); }
141141
};

‎src/providers/gdal/qgsgdalprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ bool QgsGdalProvider::hasStatistics( int theBandNo,
21172117
if ( !( theStats & QgsRasterBandStats::StdDev ) ) pdfStdDev = NULL;
21182118

21192119
// try to fetch the cached stats (bForce=FALSE)
2120-
// Unfortunately GDALGetRasterStatistics() does not work as expected acording to
2120+
// Unfortunately GDALGetRasterStatistics() does not work as expected according to
21212121
// API doc, if bApproxOK=false and bForce=false/true and exact statistics
21222122
// (from all raster pixels) are not available/cached, it should return CE_Warning.
21232123
// Instead, it is giving estimated (from sample) cached statistics and it returns CE_None.

‎src/providers/grass/qgsgrassgislib.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,10 @@ int GRASS_LIB_EXPORT G_parser( int argc, char **argv )
310310

311311
if ( ret == 0 ) // parsed OK
312312
{
313-
// It would be useful to determin region from input raster layers if no one
314-
// is given by environment variable but there seems to be no way to get
315-
// access to module options. Everything is in static variables in parser.c
316-
// and there are no access functions to them.
313+
// It would be useful to determine the region from input raster layers if
314+
// no one is given by environment variable but there seems to be no way to
315+
// get access to module options. Everything is in static variables in
316+
// parser.c and there are no access functions to them.
317317
}
318318
return ret;
319319
}

‎src/providers/oracle/qgsoracleprovider.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ void QgsOracleProvider::appendGeomParam( QgsGeometry *geom, QSqlQuery &qry ) con
16831683

16841684
if ( !g.isNull )
16851685
{
1686-
ptr.ucPtr++; // skip endianess
1686+
ptr.ucPtr++; // skip endianness
16871687

16881688
g.eleminfo.clear();
16891689
g.ordinates.clear();
@@ -1717,7 +1717,7 @@ void QgsOracleProvider::appendGeomParam( QgsGeometry *geom, QSqlQuery &qry ) con
17171717
{
17181718
g.gtype = SDO_GTYPE( dim, gtMultiLine );
17191719
nLines = *ptr.iPtr++;
1720-
ptr.ucPtr++; // Skip endianess of first linestring
1720+
ptr.ucPtr++; // Skip endianness of first linestring
17211721
ptr.iPtr++; // Skip type of first linestring
17221722
}
17231723

@@ -1734,7 +1734,7 @@ void QgsOracleProvider::appendGeomParam( QgsGeometry *geom, QSqlQuery &qry ) con
17341734
iOrdinate += dim;
17351735
}
17361736

1737-
ptr.ucPtr++; // Skip endianess of next linestring
1737+
ptr.ucPtr++; // Skip endianness of next linestring
17381738
ptr.iPtr++; // Skip type of next linestring
17391739
}
17401740
}
@@ -1753,7 +1753,7 @@ void QgsOracleProvider::appendGeomParam( QgsGeometry *geom, QSqlQuery &qry ) con
17531753
g.gtype = SDO_GTYPE( dim, gtMultiPolygon );
17541754
nPolygons = *ptr.iPtr++;
17551755

1756-
ptr.ucPtr++; // Skip endianess of first polygon
1756+
ptr.ucPtr++; // Skip endianness of first polygon
17571757
ptr.iPtr++; // Skip type of first polygon
17581758
}
17591759

@@ -1774,7 +1774,7 @@ void QgsOracleProvider::appendGeomParam( QgsGeometry *geom, QSqlQuery &qry ) con
17741774
}
17751775
}
17761776

1777-
ptr.ucPtr++; // Skip endianess of next polygon
1777+
ptr.ucPtr++; // Skip endianness of next polygon
17781778
ptr.iPtr++; // Skip type of next polygon
17791779
}
17801780
}
@@ -1791,7 +1791,7 @@ void QgsOracleProvider::appendGeomParam( QgsGeometry *geom, QSqlQuery &qry ) con
17911791

17921792
for ( int i = 0; i < n; i++ )
17931793
{
1794-
ptr.ucPtr++; // Skip endianess of point
1794+
ptr.ucPtr++; // Skip endianness of point
17951795
ptr.iPtr++; // Skip type of point
17961796

17971797
g.ordinates << *ptr.dPtr++;

0 commit comments

Comments
 (0)
Please sign in to comment.