Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix minor typos + scripts/chkspelling.sh run.
  • Loading branch information
Alister authored and jef-n committed Sep 30, 2011
1 parent 6539ce9 commit e139348
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion doc/INSTALL.t2t
Expand Up @@ -33,7 +33,7 @@ Building QGIS from source - step by step
%! PostProc(tex): '\\section' '\\newpage\\section'
%! PostProc(tex): 'section{' 'section{\\color{qgis-green}'
%! PostProc(tex): NEWPAGE '\\newpage'
% Give alternating table rows different colours and use a smaller font in tables (\tiny)
% Give alternating table rows different colors and use a smaller font in tables (\tiny)
%! PostProc(tex): '\\begin{tabular}' '\\rowcolors{2}{tableShade}{white} \n\\tiny\\begin{tabular}'
%! encoding: iso-8859-1

Expand Down
4 changes: 2 additions & 2 deletions doc/changelog.t2t
Expand Up @@ -81,7 +81,7 @@ http://linfiniti.com/2011/08/improvements-to-raster-performance-in-qgis-master/]
- Reduce top and side margins for attribute table dialog
- Remove the (hopefully) last SVN reference
- More svn version removal
- Added missing colour accessor/mutator/member from composerlegenditem header
- Added missing color accessor/mutator/member from composerlegenditem header
- Get rid of svn version stuff from release branch.
- Other workaround for Qt#5114 (fixes #3250, #3028, #2598)
- Try to make the histogram smoother
Expand Down Expand Up @@ -216,7 +216,7 @@ changed so we will just provide a bullet list of key new features here.

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

==Printing==
Expand Down
2 changes: 1 addition & 1 deletion resources/customization.xml
Expand Up @@ -1935,7 +1935,7 @@
<widget class="QLabel" label="&lt;p align=&quot;right&quot;&gt;Full&lt;/p&gt;" objectName="textLabel4"/>
</widget>
<widget class="QGroupBox" label="" objectName="gboxCustomTransparency">
<widget class="QLabel" label="Transparency band" objectName="lblTransarent"/>
<widget class="QLabel" label="Transparency band" objectName="lblTransparent"/>
<widget class="QComboBox" label="" objectName="cboxTransparencyBand"/>
<widget class="QLabel" label="Transparent pixel list" objectName="label_2"/>
</widget>
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/network/qgsgraphanalyzer.cpp
Expand Up @@ -14,7 +14,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
// C++ standart includes
// C++ standard includes
#include <limits>

// QT includes
Expand Down
2 changes: 1 addition & 1 deletion src/browser/qgsbrowser.cpp
Expand Up @@ -52,7 +52,7 @@ QgsBrowser::QgsBrowser( QWidget *parent, Qt::WFlags flags )
mModel = new QgsBrowserModel( treeView );
treeView->setModel( mModel );

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

connect( treeView, SIGNAL( clicked( const QModelIndex& ) ), this, SLOT( itemClicked( const QModelIndex& ) ) );
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsapplication.cpp
Expand Up @@ -68,7 +68,7 @@ QStringList QgsApplication::mGdalSkipList;
QgsApplication::QgsApplication( int & argc, char ** argv, bool GUIenabled, QString customConfigPath )
: QApplication( argc, argv, GUIenabled )
{
init( customConfigPath ); //initi can also be called directly by e.g. unit tests that dont inherit QApplication.
init( customConfigPath ); // init can also be called directly by e.g. unit tests that don't inherit QApplication.
}
void QgsApplication::init( QString customConfigPath )
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsrasterprojector.cpp
Expand Up @@ -42,7 +42,7 @@ QgsRasterProjector::QgsRasterProjector(

// Calculate tolerance
// TODO: Think it over better
// Note: we are checking on matrix each even point, that means taht the real error
// Note: we are checking on matrix each even point, that means that the real error
// in that moment is approximately half size
double myDestRes = mDestXRes < mDestYRes ? mDestXRes : mDestYRes;
mSqrTolerance = myDestRes * myDestRes;
Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterlayer.h
Expand Up @@ -674,7 +674,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
/** \brief Propagate progress updates from GDAL up to the parent app */
void updateProgress( int, int );

/** \brief recieve progress signal from provider */
/** \brief receive progress signal from provider */
void onProgress( int, double, QString );

signals:
Expand Down
4 changes: 2 additions & 2 deletions src/core/raster/qgsrastertransparency.cpp
Expand Up @@ -103,7 +103,7 @@ int QgsRasterTransparency::alphaValue( double theValue, int theGlobalTransparenc
return 0;
}

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

//Search through he transparency list looking for a match
//Search through the transparency list looking for a match
bool myTransparentPixelFound = false;
TransparentThreeValuePixel myTransparentPixel = {0, 0, 0, 100};
for ( int myListRunner = 0; myListRunner < mTransparentThreeValuePixelList.count(); myListRunner++ )
Expand Down
Expand Up @@ -34,7 +34,7 @@
* @param port - The port number the database server is listening to
* @param databasename - The name of the database to connect to
* @param username - The username needed to access the database or database server
* @param password - The password associate witht he username needed to access the database or database server
* @param password - The password associate with the username needed to access the database or database server
* @param type - The type of database being connected to
*/
eVisDatabaseConnection::eVisDatabaseConnection( QString hostname, int port, QString databasename, QString username, QString password, DATABASE_TYPE type )
Expand Down Expand Up @@ -191,7 +191,7 @@ QSqlQuery* eVisDatabaseConnection::query( QString sqlStatement )
* @param port - The port number the database server is listening to
* @param databasename - The name of the database to connect to
* @param username - The username needed to access the database or database server
* @param password - The password associate witht he username needed to access the database or database server
* @param password - The password associate with the username needed to access the database or database server
* @param type - The type of database being connected to
*/
void eVisDatabaseConnection::resetConnectionParameters( QString hostname, int port, QString databasename, QString username, QString password, DATABASE_TYPE type )
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeorefplugingui.h
Expand Up @@ -171,7 +171,7 @@ class QgsGeorefPluginGui : public QMainWindow, private Ui::QgsGeorefPluginGuiBas
/**
* Calculates root mean squared error for the currently active
* ground control points and transform method.
* Note that he RMSE measure is adjusted for the degrees of freedom of the
* Note that the RMSE measure is adjusted for the degrees of freedom of the
* used polynomial transform.
* @param error out: the mean error
* @return true in case of success
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/globe/globe_plugin.h
Expand Up @@ -63,9 +63,9 @@ class GlobePlugin : public QObject, public QgisPlugin
//! Sync globe extent to mapCanavas
void syncExtent();

//! called when a project has been read succesfully
//! called when a project has been read successfully
void projectReady();
//! called when a new project has been created succesfully
//! called when a new project has been created successfully
void blankProjectReady();
//! called when the globe window is closed
void setGlobeNotRunning();
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresconnection.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
qgspostgresconnection.cpp - PostgresSQL/PostGIS connection
qgspostgresconnection.cpp - PostgreSQL/PostGIS connection
-------------------
begin : 3 June 2011
copyright : (C) 2011 by Giuseppe Sucameli
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresconnection.h
@@ -1,5 +1,5 @@
/***************************************************************************
qgspostgresconnection.h - PostgresSQL/PostGIS connection
qgspostgresconnection.h - PostgreSQL/PostGIS connection
-------------------
begin : 3 June 2011
copyright : (C) 2011 by Giuseppe Sucameli
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsrasterlayerpropertiesbase.ui
Expand Up @@ -1021,7 +1021,7 @@
</property>
<layout class="QGridLayout">
<item row="0" column="0">
<widget class="QLabel" name="lblTransarent">
<widget class="QLabel" name="lblTransparent">
<property name="text">
<string>Transparency band</string>
</property>
Expand Down

0 comments on commit e139348

Please sign in to comment.