Skip to content
Snippets Groups Projects
Commit 9bf70872 authored by luyikei's avatar luyikei
Browse files

Core: Return a correct value in loadProject

parent 57f71637
No related branches found
No related tags found
No related merge requests found
......@@ -110,9 +110,7 @@ Core::loadProject(const QString& fileName)
if ( fileName.isEmpty() == true )
return false;
//FIXME: What if the project was unsaved, and the user wants to cancel the operation?
m_currentProject->load( fileName );
return true;
return m_currentProject->load( fileName );
}
bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment