We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent f2d9cf3 commit 237a2e8Copy full SHA for 237a2e8
src/app/qgisapp.cpp
@@ -3810,6 +3810,7 @@ bool QgisApp::loadComposersFromProject( const QString& projectFilePath )
3810
{
3811
composer->close();
3812
}
3813
+ emit composerAdded( composer->view() );
3814
3815
return true;
3816
@@ -3819,6 +3820,7 @@ void QgisApp::deletePrintComposers()
3819
3820
QSet<QgsComposer*>::iterator it = mPrintComposers.begin();
3821
for ( ; it != mPrintComposers.end(); ++it )
3822
3823
+ emit composerWillBeRemoved(( *it )->view() );
3824
delete( *it );
3825
3826
mPrintComposers.clear();
0 commit comments