Skip to content

Commit

Permalink
Fix bookmarks import and export menu items
Browse files Browse the repository at this point in the history
Method names were changed by 89d52e5 ("[bugfix] Various
Bookmarks issues backported").
  • Loading branch information
cjmayo committed Dec 8, 2017
1 parent ac2d111 commit e86c4e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsbookmarks.cpp
Expand Up @@ -64,8 +64,8 @@ QgsBookmarks::QgsBookmarks( QWidget *parent )
btnExport->setIcon( QgsApplication::getThemeIcon( "/mActionSharingExport.svg" ) );
btnImport->setIcon( QgsApplication::getThemeIcon( "/mActionSharingImport.svg" ) );

connect( btnExport, SIGNAL( triggered() ), this, SLOT( exportToXML() ) );
connect( btnImport, SIGNAL( triggered() ), this, SLOT( importFromXML() ) );
connect( btnExport, SIGNAL( triggered() ), this, SLOT( exportToXml() ) );
connect( btnImport, SIGNAL( triggered() ), this, SLOT( importFromXml() ) );
btnImpExp->setMenu( share );


Expand Down

0 comments on commit e86c4e2

Please sign in to comment.