Skip to content

Commit

Permalink
Silly, Mapp is definitely a speilling error
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 15, 2018
1 parent d0de3d3 commit b4626fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsgeometryvalidationdock.cpp
Expand Up @@ -34,7 +34,7 @@ email : matthias@opengis.ch
QgsGeometryValidationDock::QgsGeometryValidationDock( const QString &title, QgsMapCanvas *mapCanvas, QgisApp *parent, Qt::WindowFlags flags )
: QgsDockWidget( title, parent, flags )
, mMapCanvas( mapCanvas )
, mApp( parent )
, mQgisApp( parent )
{
setupUi( this );

Expand Down Expand Up @@ -153,7 +153,7 @@ void QgsGeometryValidationDock::onRowsInserted()
{
if ( !isVisible() )
{
mApp->addDockWidget( Qt::RightDockWidgetArea, this );
mQgisApp->addDockWidget( Qt::RightDockWidgetArea, this );
}
raise();
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsgeometryvalidationdock.h
Expand Up @@ -72,7 +72,7 @@ class QgsGeometryValidationDock : public QgsDockWidget, public Ui_QgsGeometryVal
QgsGeometryValidationService *mGeometryValidationService = nullptr;
QButtonGroup *mZoomToButtonGroup = nullptr;
QgsMapCanvas *mMapCanvas = nullptr;
QgisApp *mApp = nullptr;
QgisApp *mQgisApp = nullptr;
QgsCoordinateTransform mLayerTransform;
QModelIndex currentIndex() const;
QgsRubberBand *mFeatureRubberband = nullptr;
Expand Down

0 comments on commit b4626fd

Please sign in to comment.