gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 58936f94cabf52a6fa920c9fbec7d18eea7afde7
parent 0b5d102f1583b9c3e78f353ad8cb2b1a1284581b
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 14 Jul 2024 18:00:02 +0200

fix warning

Diffstat:
Msource/jucePluginEditorLib/patchmanager/grouptreeitem.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePluginEditorLib/patchmanager/grouptreeitem.cpp b/source/jucePluginEditorLib/patchmanager/grouptreeitem.cpp @@ -13,7 +13,7 @@ namespace jucePluginEditorLib::patchManager GroupTreeItem::GroupTreeItem(PatchManager& _pm, const GroupType _type, const std::string& _groupName) : TreeItem(_pm, _groupName), m_type(_type) { - onParentSearchChanged({}); + GroupTreeItem::onParentSearchChanged({}); } void GroupTreeItem::updateFromTags(const std::set<std::string>& _tags)