Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ask whether to save existing project when creating a new
 project from a template.
  • Loading branch information
manisandro committed Apr 8, 2014
1 parent e71930f commit 25915d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -3284,6 +3284,11 @@ void QgisApp::fileNew( bool thePromptToSaveFlag, bool forceBlank )

bool QgisApp::fileNewFromTemplate( QString fileName )
{
if ( !saveDirty() )
{
return false; //cancel pressed
}

QgsDebugMsg( QString( "loading project template: %1" ).arg( fileName ) );
if ( addProject( fileName ) )
{
Expand Down Expand Up @@ -9560,3 +9565,4 @@ LONG WINAPI QgisApp::qgisCrashDump( struct _EXCEPTION_POINTERS *ExceptionInfo )
return EXCEPTION_EXECUTE_HANDLER;
}
#endif

0 comments on commit 25915d7

Please sign in to comment.