Skip to content

Commit

Permalink
Merge pull request #5829 from cjmayo/fix-xml-bookmarks-2.18
Browse files Browse the repository at this point in the history
Fix bookmarks import and export menu items
  • Loading branch information
elpaso committed Dec 8, 2017
2 parents ac2d111 + e86c4e2 commit 7961ef3
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 7961ef3

Please sign in to comment.