Skip to content

Commit

Permalink
Fix reversed show/hide signals
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Jul 25, 2011
1 parent 05d2cd9 commit c42f1ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgscomposerview.cpp
Expand Up @@ -502,13 +502,13 @@ void QgsComposerView::paintEvent( QPaintEvent* event )

void QgsComposerView::hideEvent( QHideEvent* e )
{
emit( composerViewShow( this ) );
emit( composerViewHide( this ) );
e->ignore();
}

void QgsComposerView::showEvent( QShowEvent* e )
{
emit( composerViewHide( this ) );
emit( composerViewShow( this ) );
e->ignore();
}

Expand Down

0 comments on commit c42f1ea

Please sign in to comment.