Skip to content

Commit 1462333

Browse files
committed
spelling fixes
1 parent 3854086 commit 1462333

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

python/core/composer/qgscomposition.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class QgsComposition : QGraphicsScene
229229
/**Remove custom snap line (and delete the object)*/
230230
void removeSnapLine( QGraphicsLineItem* line );
231231
/**Get nearest snap line
232-
* @note not availabel in python bindings
232+
* @note not available in python bindings
233233
*/
234234
// QGraphicsLineItem* nearestSnapLine( bool horizontal, double x, double y, double tolerance, QList< QPair< QgsComposerItem*, QgsComposerItem::ItemPositionMode > >& snappedItems );
235235
/**Hides / shows custom snap lines*/

python/pyplugin_installer/installer_data.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@
7070
"status" unicode, # ( not installed | new ) | ( installed | upgradeable | orphan | newer )
7171
"error" unicode, # NULL | broken | incompatible | dependent
7272
"error_details" unicode, # more details
73-
"experimental" boolean, # choosen version: experimental or stable?
74-
"version_available" unicode, # choosen version: version
75-
"zip_repository" unicode, # choosen version: the remote repository id
76-
"download_url" unicode, # choosen version: url for downloading
77-
"filename" unicode, # choosen version: the zip file to be downloaded
78-
"downloads" unicode, # choosen version: number of dowloads
79-
"average_vote" unicode, # choosen version: average vote
80-
"rating_votes" unicode, # choosen version: number of votes
73+
"experimental" boolean, # chosen version: experimental or stable?
74+
"version_available" unicode, # chosen version: version
75+
"zip_repository" unicode, # chosen version: the remote repository id
76+
"download_url" unicode, # chosen version: url for downloading
77+
"filename" unicode, # chosen version: the zip file to be downloaded
78+
"downloads" unicode, # chosen version: number of dowloads
79+
"average_vote" unicode, # chosen version: average vote
80+
"rating_votes" unicode, # chosen version: number of votes
8181
"stable:version_available" unicode, # stable version found in repositories
8282
"stable:download_source" unicode,
8383
"stable:download_url" unicode,

scripts/chkspelling.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +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)|context_help|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"
20+
EX="\.(svn-base|tmp|xpm|ts)|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"
2121

2222
egrep --exclude-dir=.git --color=always "$RE" -ir . | egrep -iv "$EX"
23-
egrep --exclude-dir=.git --color=always "$RE" -i resources/context_help/*-en_US

scripts/spelling.dat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ neccesary:necessary
3232
devided:divided
3333
variantions:variations
3434
availale:available
35+
availabel:available
3536
attemps:attempts
3637
forse:force
3738
adresses:addresses

src/app/pluginmanager/metadata

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ available true | false
2121
status not installed | new | upgradeable | orphan | downgradeable *
2222
error NULL | broken | incompatible | dependent
2323
error_details
24-
experimental choosen version status
24+
experimental chosen version status
2525
version_available
2626
zip_repository the remote repository id
2727
download_url
@@ -34,4 +34,4 @@ rating_votes number of votes
3434
available, installed. version_available, version_installed.
3535
orphan = installed and not available to download;
3636
new = not installed and seen for the first time;
37-
downgradeable = the available version is lower than installed one.
37+
downgradeable = the available version is lower than installed one.

src/core/composer/qgscomposition.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ class CORE_EXPORT QgsComposition : public QGraphicsScene
283283
/**Remove custom snap line (and delete the object)*/
284284
void removeSnapLine( QGraphicsLineItem* line );
285285
/**Get nearest snap line
286-
* @note not availabel in python bindings
286+
* @note not available in python bindings
287287
*/
288288
QGraphicsLineItem* nearestSnapLine( bool horizontal, double x, double y, double tolerance, QList< QPair< QgsComposerItem*, QgsComposerItem::ItemPositionMode > >& snappedItems );
289289
/**Hides / shows custom snap lines*/

src/core/raster/qgsrasterdrawer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void QgsRasterDrawer::drawImage( QPainter* p, QgsRasterViewPort* viewPort, const
8484
p->save();
8585
p->setRenderHint( QPainter::Antialiasing, false );
8686

87-
// Blending problem was reported with PDF output if backgroud color has alpha < 255
87+
// Blending problem was reported with PDF output if background color has alpha < 255
8888
// in #7766, it seems to be a bug in Qt, setting a brush with alpha 255 is a workaround
8989
// which should not harm anything
9090
p->setBrush( QBrush( QColor( Qt::white ), Qt::NoBrush ) );

0 commit comments

Comments
 (0)