1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Introjucer: refactoring and addition of appearance settings window for editor colours + fonts.

This commit is contained in:
jules 2012-07-04 10:43:18 +01:00
parent 7f74968cef
commit f824e99f2d
33 changed files with 877 additions and 125 deletions

View file

@ -66,7 +66,7 @@ Project::Project (const File& file_)
Project::~Project()
{
projectRoot.removeListener (this);
OpenDocumentManager::getInstance()->closeAllDocumentsUsingProject (*this, false);
JucerApplication::getApp()->openDocumentManager.closeAllDocumentsUsingProject (*this, false);
}
//==============================================================================
@ -537,7 +537,7 @@ bool Project::Item::renameFile (const File& newFile)
|| (newFile.exists() && ! oldFile.exists()))
{
setFile (newFile);
OpenDocumentManager::getInstance()->fileHasBeenRenamed (oldFile, newFile);
JucerApplication::getApp()->openDocumentManager.fileHasBeenRenamed (oldFile, newFile);
return true;
}