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

Projucer: Remove unused function

This commit is contained in:
reuk 2021-05-14 16:30:11 +01:00
parent c19cd73306
commit cc4624dfbc
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
3 changed files with 0 additions and 6 deletions

View file

@ -229,7 +229,6 @@ bool MainWindow::closeCurrentProject (OpenDocumentManager::SaveIfNeeded askUserT
if (auto* pcc = getProjectContentComponent())
{
pcc->saveTreeViewState();
pcc->saveOpenDocumentList();
pcc->hideEditor();
}

View file

@ -149,10 +149,6 @@ void ProjectContentComponent::setProject (Project* newProject)
}
}
void ProjectContentComponent::saveTreeViewState()
{
}
void ProjectContentComponent::saveOpenDocumentList()
{
if (project != nullptr)

View file

@ -46,7 +46,6 @@ public:
Project* getProject() const noexcept { return project; }
void setProject (Project*);
void saveTreeViewState();
void saveOpenDocumentList();
void reloadLastOpenDocuments();