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:
parent
7f74968cef
commit
f824e99f2d
33 changed files with 877 additions and 125 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue