Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for ticket #245 (georeferencer cancel button doesn't work)
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5727 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Aug 23, 2006
1 parent fb98e13 commit 0342081
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/plugins/georeferencer/mapcoordsdialog.cpp
Expand Up @@ -29,3 +29,8 @@ void MapCoordsDialog::on_buttonOk_clicked() {
emit pointAdded(mPixelCoords, mapCoords);
accept();
}

void MapCoordsDialog::on_buttonCancel_clicked()
{
reject();
}
1 change: 1 addition & 0 deletions src/plugins/georeferencer/mapcoordsdialog.h
Expand Up @@ -28,6 +28,7 @@ Q_OBJECT
public slots:

void on_buttonOk_clicked();
void on_buttonCancel_clicked();

private:

Expand Down

0 comments on commit 0342081

Please sign in to comment.