Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
evis: update QAction::activated to triggered
  • Loading branch information
jef-n committed Mar 13, 2016
1 parent 811c9c2 commit 48911ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/evis/evis.cpp
Expand Up @@ -116,9 +116,9 @@ void eVis::initGui()
mEventBrowserActionPointer->setWhatsThis( tr( "Open an Event Browser to explore the current layer's features" ) );

// Connect the action to the runmQGisIface->mapCanvas()
connect( mDatabaseConnectionActionPointer, SIGNAL( activated() ), this, SLOT( launchDatabaseConnection() ) );
connect( mDatabaseConnectionActionPointer, SIGNAL( triggered() ), this, SLOT( launchDatabaseConnection() ) );
connect( mEventIdToolActionPointer, SIGNAL( triggered() ), this, SLOT( launchEventIdTool() ) );
connect( mEventBrowserActionPointer, SIGNAL( activated() ), this, SLOT( launchEventBrowser() ) );
connect( mEventBrowserActionPointer, SIGNAL( triggered() ), this, SLOT( launchEventBrowser() ) );


// Add the icon to the toolbar
Expand Down

0 comments on commit 48911ca

Please sign in to comment.