Skip to content

Commit

Permalink
fix build under NDK (#3276)
Browse files Browse the repository at this point in the history
this fixes:
QgsMapToolTouch::isTransient()' marked override, but does not override
virtual bool isTransient() override { return true; }
  • Loading branch information
mbernasocchi authored and m-kuhn committed Jul 7, 2016
1 parent fd446cf commit 77fa125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmaptooltouch.h
Expand Up @@ -48,7 +48,7 @@ class GUI_EXPORT QgsMapToolTouch : public QgsMapTool
//! Overridden Mouse double click event.
virtual void canvasDoubleClickEvent( QgsMapMouseEvent* e ) override;

virtual bool isTransient() override { return true; }
Q_DECL_DEPRECATED virtual bool isTransient() const override { return true; }

bool gestureEvent( QGestureEvent *event ) override;

Expand Down

0 comments on commit 77fa125

Please sign in to comment.