Skip to content

Commit e139348

Browse files
Alisterjef-n
Alister
authored andcommitted
fix minor typos + scripts/chkspelling.sh run.
1 parent 6539ce9 commit e139348

15 files changed

+19
-19
lines changed

doc/INSTALL.t2t

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Building QGIS from source - step by step
3333
%! PostProc(tex): '\\section' '\\newpage\\section'
3434
%! PostProc(tex): 'section{' 'section{\\color{qgis-green}'
3535
%! PostProc(tex): NEWPAGE '\\newpage'
36-
% Give alternating table rows different colours and use a smaller font in tables (\tiny)
36+
% Give alternating table rows different colors and use a smaller font in tables (\tiny)
3737
%! PostProc(tex): '\\begin{tabular}' '\\rowcolors{2}{tableShade}{white} \n\\tiny\\begin{tabular}'
3838
%! encoding: iso-8859-1
3939

doc/changelog.t2t

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ http://linfiniti.com/2011/08/improvements-to-raster-performance-in-qgis-master/]
8181
- Reduce top and side margins for attribute table dialog
8282
- Remove the (hopefully) last SVN reference
8383
- More svn version removal
84-
- Added missing colour accessor/mutator/member from composerlegenditem header
84+
- Added missing color accessor/mutator/member from composerlegenditem header
8585
- Get rid of svn version stuff from release branch.
8686
- Other workaround for Qt#5114 (fixes #3250, #3028, #2598)
8787
- Try to make the histogram smoother
@@ -216,7 +216,7 @@ changed so we will just provide a bullet list of key new features here.
216216

217217
- Support for icons of plugins in the plugin manager dialog.
218218
- Removed quickprint plugin - use easyprint plugin rather from plugin repo.
219-
- Removed ogr convertor plugin - use 'save as' context menu rather.
219+
- Removed ogr converter plugin - use 'save as' context menu rather.
220220
-
221221

222222
==Printing==

resources/customization.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@
19351935
<widget class="QLabel" label="&lt;p align=&quot;right&quot;&gt;Full&lt;/p&gt;" objectName="textLabel4"/>
19361936
</widget>
19371937
<widget class="QGroupBox" label="" objectName="gboxCustomTransparency">
1938-
<widget class="QLabel" label="Transparency band" objectName="lblTransarent"/>
1938+
<widget class="QLabel" label="Transparency band" objectName="lblTransparent"/>
19391939
<widget class="QComboBox" label="" objectName="cboxTransparencyBand"/>
19401940
<widget class="QLabel" label="Transparent pixel list" objectName="label_2"/>
19411941
</widget>

src/analysis/network/qgsgraphanalyzer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* (at your option) any later version. *
1515
* *
1616
***************************************************************************/
17-
// C++ standart includes
17+
// C++ standard includes
1818
#include <limits>
1919

2020
// QT includes

src/browser/qgsbrowser.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ QgsBrowser::QgsBrowser( QWidget *parent, Qt::WFlags flags )
5252
mModel = new QgsBrowserModel( treeView );
5353
treeView->setModel( mModel );
5454

55-
// Last expanded is stored, dont cover whole height with file system
55+
// Last expanded is stored, don't cover whole height with file system
5656
//treeView->expand( mModel->index(0,0) );
5757

5858
connect( treeView, SIGNAL( clicked( const QModelIndex& ) ), this, SLOT( itemClicked( const QModelIndex& ) ) );

src/core/qgsapplication.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ QStringList QgsApplication::mGdalSkipList;
6868
QgsApplication::QgsApplication( int & argc, char ** argv, bool GUIenabled, QString customConfigPath )
6969
: QApplication( argc, argv, GUIenabled )
7070
{
71-
init( customConfigPath ); //initi can also be called directly by e.g. unit tests that dont inherit QApplication.
71+
init( customConfigPath ); // init can also be called directly by e.g. unit tests that don't inherit QApplication.
7272
}
7373
void QgsApplication::init( QString customConfigPath )
7474
{

src/core/qgsrasterprojector.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ QgsRasterProjector::QgsRasterProjector(
4242

4343
// Calculate tolerance
4444
// TODO: Think it over better
45-
// Note: we are checking on matrix each even point, that means taht the real error
45+
// Note: we are checking on matrix each even point, that means that the real error
4646
// in that moment is approximately half size
4747
double myDestRes = mDestXRes < mDestYRes ? mDestXRes : mDestYRes;
4848
mSqrTolerance = myDestRes * myDestRes;

src/core/raster/qgsrasterlayer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
674674
/** \brief Propagate progress updates from GDAL up to the parent app */
675675
void updateProgress( int, int );
676676

677-
/** \brief recieve progress signal from provider */
677+
/** \brief receive progress signal from provider */
678678
void onProgress( int, double, QString );
679679

680680
signals:

src/core/raster/qgsrastertransparency.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ int QgsRasterTransparency::alphaValue( double theValue, int theGlobalTransparenc
103103
return 0;
104104
}
105105

106-
//Search through he transparency list looking for a match
106+
//Search through the transparency list looking for a match
107107
bool myTransparentPixelFound = false;
108108
TransparentSingleValuePixel myTransparentPixel = {0, 100};
109109
for ( int myListRunner = 0; myListRunner < mTransparentSingleValuePixelList.count(); myListRunner++ )
@@ -141,7 +141,7 @@ int QgsRasterTransparency::alphaValue( double theRedValue, double theGreenValue,
141141
return 0;
142142
}
143143

144-
//Search through he transparency list looking for a match
144+
//Search through the transparency list looking for a match
145145
bool myTransparentPixelFound = false;
146146
TransparentThreeValuePixel myTransparentPixel = {0, 0, 0, 100};
147147
for ( int myListRunner = 0; myListRunner < mTransparentThreeValuePixelList.count(); myListRunner++ )

src/plugins/evis/databaseconnection/evisdatabaseconnection.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @param port - The port number the database server is listening to
3535
* @param databasename - The name of the database to connect to
3636
* @param username - The username needed to access the database or database server
37-
* @param password - The password associate witht he username needed to access the database or database server
37+
* @param password - The password associate with the username needed to access the database or database server
3838
* @param type - The type of database being connected to
3939
*/
4040
eVisDatabaseConnection::eVisDatabaseConnection( QString hostname, int port, QString databasename, QString username, QString password, DATABASE_TYPE type )
@@ -191,7 +191,7 @@ QSqlQuery* eVisDatabaseConnection::query( QString sqlStatement )
191191
* @param port - The port number the database server is listening to
192192
* @param databasename - The name of the database to connect to
193193
* @param username - The username needed to access the database or database server
194-
* @param password - The password associate witht he username needed to access the database or database server
194+
* @param password - The password associate with the username needed to access the database or database server
195195
* @param type - The type of database being connected to
196196
*/
197197
void eVisDatabaseConnection::resetConnectionParameters( QString hostname, int port, QString databasename, QString username, QString password, DATABASE_TYPE type )

src/plugins/georeferencer/qgsgeorefplugingui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class QgsGeorefPluginGui : public QMainWindow, private Ui::QgsGeorefPluginGuiBas
171171
/**
172172
* Calculates root mean squared error for the currently active
173173
* ground control points and transform method.
174-
* Note that he RMSE measure is adjusted for the degrees of freedom of the
174+
* Note that the RMSE measure is adjusted for the degrees of freedom of the
175175
* used polynomial transform.
176176
* @param error out: the mean error
177177
* @return true in case of success

src/plugins/globe/globe_plugin.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ class GlobePlugin : public QObject, public QgisPlugin
6363
//! Sync globe extent to mapCanavas
6464
void syncExtent();
6565

66-
//! called when a project has been read succesfully
66+
//! called when a project has been read successfully
6767
void projectReady();
68-
//! called when a new project has been created succesfully
68+
//! called when a new project has been created successfully
6969
void blankProjectReady();
7070
//! called when the globe window is closed
7171
void setGlobeNotRunning();

src/providers/postgres/qgspostgresconnection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/***************************************************************************
2-
qgspostgresconnection.cpp - PostgresSQL/PostGIS connection
2+
qgspostgresconnection.cpp - PostgreSQL/PostGIS connection
33
-------------------
44
begin : 3 June 2011
55
copyright : (C) 2011 by Giuseppe Sucameli

src/providers/postgres/qgspostgresconnection.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/***************************************************************************
2-
qgspostgresconnection.h - PostgresSQL/PostGIS connection
2+
qgspostgresconnection.h - PostgreSQL/PostGIS connection
33
-------------------
44
begin : 3 June 2011
55
copyright : (C) 2011 by Giuseppe Sucameli

src/ui/qgsrasterlayerpropertiesbase.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@
10211021
</property>
10221022
<layout class="QGridLayout">
10231023
<item row="0" column="0">
1024-
<widget class="QLabel" name="lblTransarent">
1024+
<widget class="QLabel" name="lblTransparent">
10251025
<property name="text">
10261026
<string>Transparency band</string>
10271027
</property>

0 commit comments

Comments
 (0)