Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed some typos in comments (by Vita Cizek)
git-svn-id: http://svn.osgeo.org/qgis/trunk@9505 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Oct 20, 2008
1 parent 5aeb250 commit b1fda02
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/app/qgsattributetabledisplay.cpp
Expand Up @@ -80,10 +80,10 @@ QgsAttributeTableDisplay::QgsAttributeTableDisplay( QgsVectorLayer* layer )
connect( mToggleEditingButton, SIGNAL( clicked() ), this, SLOT( toggleEditing() ) );
connect( this, SIGNAL( editingToggled( QgsMapLayer * ) ), QgisApp::instance(), SLOT( toggleEditing( QgsMapLayer * ) ) );

// etablish connection to table
// establish connection to table
connect( tblAttributes, SIGNAL( cellChanged( int, int ) ), this, SLOT( changeFeatureAttribute( int, int ) ) );

// etablish connections to layer
// establish connections to layer
connect( mLayer, SIGNAL( layerDeleted() ), this, SLOT( close() ) );

connect( mLayer, SIGNAL( selectionChanged() ), this, SLOT( selectionChanged() ) );
Expand All @@ -100,7 +100,7 @@ QgsAttributeTableDisplay::QgsAttributeTableDisplay( QgsVectorLayer* layer )
connect( mLayer, SIGNAL( featureDeleted( int ) ),
tblAttributes, SLOT( featureDeleted( int ) ) );

// etablish connections between table and vector layer
// establish connections between table and vector layer
connect( tblAttributes, SIGNAL( selected( int, bool ) ), mLayer, SLOT( select( int, bool ) ) );
connect( tblAttributes, SIGNAL( selectionRemoved( bool ) ), mLayer, SLOT( removeSelection( bool ) ) );
connect( tblAttributes, SIGNAL( repaintRequested() ), mLayer, SLOT( triggerRepaint() ) );
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsoptions.cpp
Expand Up @@ -490,7 +490,7 @@ QString QgsOptions::getEllipsoidName( QString theEllipsoidAcronym )
// database if it does not exist.
assert( myResult == 0 );
}
// Set up the query to retreive the projection information needed to populate the ELLIPSOID list
// Set up the query to retrieve the projection information needed to populate the ELLIPSOID list
QString mySql = "select name from tbl_ellipsoid where acronym='" + theEllipsoidAcronym + "'";
myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(), mySql.length(), &myPreparedStatement, &myTail );
// XXX Need to free memory from the error msg if one is set
Expand Down
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposermap.h
Expand Up @@ -187,7 +187,7 @@ class CORE_EXPORT QgsComposerMap : /*public QWidget, private Ui::QgsComposerMapB
/**For the generation of new unique ids*/
static int mCurrentComposerId;

/**Etablishes signal/slot connection for update in case of layer change*/
/**Establishes signal/slot connection for update in case of layer change*/
void connectUpdateSlot();

/**Returns the zoom factor of the graphics view. If no
Expand Down
4 changes: 2 additions & 2 deletions src/gui/qgsprojectionselector.cpp
Expand Up @@ -618,7 +618,7 @@ void QgsProjectionSelector::loadCrsList( QSet<QString> * crsFilter )

sqlite3_finalize( ppStmt );

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

QString mySearchString( sqlSafeString( leSearch->text() ) );
// Set up the query to retreive the projection information needed to populate the list
// Set up the query to retrieve the projection information needed to populate the list
QString mySql;
if ( radEpsgCrsId->isChecked() )
{
Expand Down

0 comments on commit b1fda02

Please sign in to comment.