From 729bdec028f592d8084d1ddc3ea243428eee265d Mon Sep 17 00:00:00 2001 From: Marco Bernasocchi Date: Tue, 16 Dec 2014 23:27:56 +0100 Subject: [PATCH] connect the app's signal to the interface's, to re-emit it from the interface. --- src/app/qgisappinterface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/qgisappinterface.cpp b/src/app/qgisappinterface.cpp index 1fa93bea2eb..fb6a86165e6 100644 --- a/src/app/qgisappinterface.cpp +++ b/src/app/qgisappinterface.cpp @@ -65,6 +65,8 @@ QgisAppInterface::QgisAppInterface( QgisApp * _qgis ) this, SIGNAL( newProjectCreated() ) ); connect( qgis, SIGNAL( projectRead() ), this, SIGNAL( projectRead() ) ); + connect( qgis, SIGNAL( layerSavedAs( QgsMapLayer*, QString ) ), + this, SIGNAL( layerSavedAs(QgsMapLayer*, QString ) ) ); } QgisAppInterface::~QgisAppInterface()