fix minor typos + scripts/chkspelling.sh run.

This commit is contained in:
Alister 2011-09-21 10:22:22 +12:00 committed by Juergen E. Fischer
parent 6539ce965a
commit e1393488dc
15 changed files with 19 additions and 19 deletions

View File

@ -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

View File

@ -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
@ -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==

View File

@ -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>

View File

@ -14,7 +14,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
// C++ standart includes
// C++ standard includes
#include <limits>
// QT includes

View File

@ -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& ) ) );

View File

@ -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 )
{

View File

@ -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;

View File

@ -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:

View File

@ -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++ )
@ -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++ )

View File

@ -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 )
@ -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 )

View File

@ -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

View File

@ -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();

View File

@ -1,5 +1,5 @@
/***************************************************************************
qgspostgresconnection.cpp - PostgresSQL/PostGIS connection
qgspostgresconnection.cpp - PostgreSQL/PostGIS connection
-------------------
begin : 3 June 2011
copyright : (C) 2011 by Giuseppe Sucameli

View File

@ -1,5 +1,5 @@
/***************************************************************************
qgspostgresconnection.h - PostgresSQL/PostGIS connection
qgspostgresconnection.h - PostgreSQL/PostGIS connection
-------------------
begin : 3 June 2011
copyright : (C) 2011 by Giuseppe Sucameli

View File

@ -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>