We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9f71d9f + 838864f commit 677c9caCopy full SHA for 677c9ca
src/core/qgsproject.cpp
@@ -1064,6 +1064,8 @@ bool QgsProject::write()
1064
1065
dirty( false ); // reset to pristine state
1066
1067
+ emit projectSaved();
1068
+
1069
return true;
1070
} // QgsProject::write
1071
src/core/qgsproject.h
@@ -332,6 +332,9 @@ class CORE_EXPORT QgsProject : public QObject
332
//! emitted when project is being written
333
void writeProject( QDomDocument & );
334
335
+ //! emitted when the project file has been written and closed
336
+ void projectSaved();
337
338
//! emitted when an old project file is read.
339
void oldProjectVersionWarning( QString );
340
0 commit comments