Skip to content

Commit

Permalink
Dox, build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 12, 2020
1 parent fd65c2d commit 59a5fe0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/processing/models/qgsmodelgraphicitem.cpp
Expand Up @@ -109,7 +109,7 @@ void QgsModelDesignerFlatButtonGraphicItem::modelPressEvent( QgsModelViewMouseEv
{
if ( view()->tool() && view()->tool()->allowItemInteraction() && event->button() == Qt::LeftButton )
{
QMetaObject::invokeMethod( this, &QgsModelDesignerFlatButtonGraphicItem::clicked, Qt::QueuedConnection );
QMetaObject::invokeMethod( this, "clicked", Qt::QueuedConnection );
mHoverState = false;
update();
}
Expand Down
3 changes: 3 additions & 0 deletions src/gui/processing/models/qgsmodelviewtoolselect.h
Expand Up @@ -63,6 +63,9 @@ class GUI_EXPORT QgsModelViewToolSelect : public QgsModelViewTool
//! Sets the a \a scene.
void setScene( QgsModelGraphicsScene *scene );

/**
* Resets the internal cache following a scene change.
*/
void resetCache();

private:
Expand Down

0 comments on commit 59a5fe0

Please sign in to comment.