Skip to content

Commit b1fda02

Browse files
author
wonder
committed
fixed some typos in comments (by Vita Cizek)
git-svn-id: http://svn.osgeo.org/qgis/trunk@9505 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 5aeb250 commit b1fda02

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/app/qgsattributetabledisplay.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ QgsAttributeTableDisplay::QgsAttributeTableDisplay( QgsVectorLayer* layer )
8080
connect( mToggleEditingButton, SIGNAL( clicked() ), this, SLOT( toggleEditing() ) );
8181
connect( this, SIGNAL( editingToggled( QgsMapLayer * ) ), QgisApp::instance(), SLOT( toggleEditing( QgsMapLayer * ) ) );
8282

83-
// etablish connection to table
83+
// establish connection to table
8484
connect( tblAttributes, SIGNAL( cellChanged( int, int ) ), this, SLOT( changeFeatureAttribute( int, int ) ) );
8585

86-
// etablish connections to layer
86+
// establish connections to layer
8787
connect( mLayer, SIGNAL( layerDeleted() ), this, SLOT( close() ) );
8888

8989
connect( mLayer, SIGNAL( selectionChanged() ), this, SLOT( selectionChanged() ) );
@@ -100,7 +100,7 @@ QgsAttributeTableDisplay::QgsAttributeTableDisplay( QgsVectorLayer* layer )
100100
connect( mLayer, SIGNAL( featureDeleted( int ) ),
101101
tblAttributes, SLOT( featureDeleted( int ) ) );
102102

103-
// etablish connections between table and vector layer
103+
// establish connections between table and vector layer
104104
connect( tblAttributes, SIGNAL( selected( int, bool ) ), mLayer, SLOT( select( int, bool ) ) );
105105
connect( tblAttributes, SIGNAL( selectionRemoved( bool ) ), mLayer, SLOT( removeSelection( bool ) ) );
106106
connect( tblAttributes, SIGNAL( repaintRequested() ), mLayer, SLOT( triggerRepaint() ) );

src/app/qgsoptions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ QString QgsOptions::getEllipsoidName( QString theEllipsoidAcronym )
490490
// database if it does not exist.
491491
assert( myResult == 0 );
492492
}
493-
// Set up the query to retreive the projection information needed to populate the ELLIPSOID list
493+
// Set up the query to retrieve the projection information needed to populate the ELLIPSOID list
494494
QString mySql = "select name from tbl_ellipsoid where acronym='" + theEllipsoidAcronym + "'";
495495
myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(), mySql.length(), &myPreparedStatement, &myTail );
496496
// XXX Need to free memory from the error msg if one is set

src/core/composer/qgscomposermap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class CORE_EXPORT QgsComposerMap : /*public QWidget, private Ui::QgsComposerMapB
187187
/**For the generation of new unique ids*/
188188
static int mCurrentComposerId;
189189

190-
/**Etablishes signal/slot connection for update in case of layer change*/
190+
/**Establishes signal/slot connection for update in case of layer change*/
191191
void connectUpdateSlot();
192192

193193
/**Returns the zoom factor of the graphics view. If no

src/gui/qgsprojectionselector.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ void QgsProjectionSelector::loadCrsList( QSet<QString> * crsFilter )
618618

619619
sqlite3_finalize( ppStmt );
620620

621-
// Set up the query to retreive the projection information needed to populate the list
621+
// Set up the query to retrieve the projection information needed to populate the list
622622
//note I am giving the full field names for clarity here and in case someown
623623
//changes the underlying view TS
624624
sql = "select description, srs_id, epsg, is_geo, name, parameters from vw_srs ";
@@ -731,7 +731,7 @@ void QgsProjectionSelector::on_pbnFind_clicked()
731731
QgsDebugMsg( "pbnFind..." );
732732

733733
QString mySearchString( sqlSafeString( leSearch->text() ) );
734-
// Set up the query to retreive the projection information needed to populate the list
734+
// Set up the query to retrieve the projection information needed to populate the list
735735
QString mySql;
736736
if ( radEpsgCrsId->isChecked() )
737737
{

0 commit comments

Comments
 (0)