Skip to content

Commit f8f2528

Browse files
committedJan 14, 2016
spelling fixes
1 parent 1dde1b0 commit f8f2528

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎python/core/qgstracer.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class QgsTracer : QObject
4848
enum PathError
4949
{
5050
ErrNone, //!< No error
51-
ErrTooManyFeatures, //!< Max feature count treshold was reached while reading features
51+
ErrTooManyFeatures, //!< Max feature count threshold was reached while reading features
5252
ErrPoint1, //!< Start point cannot be joined to the graph
5353
ErrPoint2, //!< End point cannot be joined to the graph
5454
ErrNoPath, //!< Points are not connected in the graph

‎scripts/chkspelling.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818

1919
RE=$(echo $(cut -d: -f1 scripts/spelling.dat | sed -e 's/^/\\</; s/$/\\>|/;') | sed -e 's/| /|/g; s/|$//;')
20-
EX="\.(svn-base|tmp|xpm|ts|o)|spelling\.dat|Exception_to_GPL_for_Qt.txt|sqlite3.c|debian/build|ms-windows/osgeo4w|ChangeLog|src/plugins/grass/qtermwidget|src/app/gps/qwtpolar-1.0|debian/tmp|src/plugins/dxf2shp_converter/dxflib"
20+
EX="\.(svn-base|tmp|xpm|ts|o)|spelling\.dat|Exception_to_GPL_for_Qt.txt|sqlite3.c|debian/build|ms-windows/osgeo4w|ChangeLog|src/plugins/grass/qtermwidget|src/app/gps/qwtpolar-1.0|debian/tmp|src/plugins/dxf2shp_converter/dxflib|python/ext-libs"
2121

2222
egrep --exclude-dir=.git --color=always "$RE" -ir . | egrep -iv "$EX"

‎src/app/qgslabelinggui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ void QgsLabelingGui::populateDataDefinedButtons( QgsPalLayerSettings& s )
11151115
"<b>6</b>=Below Left|<b>7</b>=Below|<b>8</b>=Below Right]" ) );
11161116
mPointPositionOrderDDBtn->init( mLayer, s.dataDefinedProperty( QgsPalLayerSettings::PredefinedPositionOrder ),
11171117
QgsDataDefinedButton::String,
1118-
tr( "Comma seperated list of placements in order of priority<br>" )
1118+
tr( "Comma separated list of placements in order of priority<br>" )
11191119
+ QLatin1String( "[<b>TL</b>=Top left|<b>TSL</b>=Top, slightly left|<b>T</b>=Top middle|<br>"
11201120
"<b>TSR</b>=Top, slightly right|<b>TR</b>=Top right|<br>"
11211121
"<b>L</b>=Left|<b>R</b>=Right|<br>"

‎src/core/qgstracer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ void extractLinework( const QgsGeometry* g, QgsMultiPolyline& mpl )
428428
break;
429429

430430
default:
431-
break; // unkown type - do nothing
431+
break; // unknown type - do nothing
432432
}
433433
}
434434

‎src/core/qgstracer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class CORE_EXPORT QgsTracer : public QObject
7575
enum PathError
7676
{
7777
ErrNone, //!< No error
78-
ErrTooManyFeatures, //!< Max feature count treshold was reached while reading features
78+
ErrTooManyFeatures, //!< Max feature count threshold was reached while reading features
7979
ErrPoint1, //!< Start point cannot be joined to the graph
8080
ErrPoint2, //!< End point cannot be joined to the graph
8181
ErrNoPath, //!< Points are not connected in the graph

‎src/ui/editorwidgets/qgsexternalresourceconfigdlg.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
<item>
195195
<widget class="QGroupBox" name="mFilePickerGroupBox">
196196
<property name="title">
197-
<string>Display ressource path</string>
197+
<string>Display resource path</string>
198198
</property>
199199
<property name="checkable">
200200
<bool>true</bool>

0 commit comments

Comments
 (0)
Please sign in to comment.