Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 21, 2015
1 parent d560568 commit fbea593
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -934,7 +934,7 @@ void QgsGeorefPluginGui::createMapCanvas()

mToolAddPoint = new QgsGeorefToolAddPoint( mCanvas );
mToolAddPoint->setAction( mActionAddPoint );
connect( mToolAddPoint, SIGNAL( showCoordDailog( const QgsPoint & ) ),
connect( mToolAddPoint, SIGNAL( showCoordDialog( const QgsPoint & ) ),
this, SLOT( showCoordDialog( const QgsPoint & ) ) );

mToolDeletePoint = new QgsGeorefToolDeletePoint( mCanvas );
Expand Down Expand Up @@ -1000,7 +1000,7 @@ void QgsGeorefPluginGui::createMenus()
toolBarEdit->setIconSize( QSize( size, size ) );
toolBarView->setIconSize( QSize( size, size ) );
toolBarHistogramStretch->setIconSize( QSize( size, size ) );

// View menu
if ( layout != QDialogButtonBox::KdeLayout )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeoreftooladdpoint.h
Expand Up @@ -34,7 +34,7 @@ class QgsGeorefToolAddPoint : public QgsMapToolEmitPoint
void canvasPressEvent( QMouseEvent * e ) override;

signals:
void showCoordDailog( const QgsPoint & );
void showCoordDialog( const QgsPoint & );
};

#endif // QGSGEOREFTOOLADDPOINT_H

0 comments on commit fbea593

Please sign in to comment.