1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Projucer: Fix for 'unreachable code' warning in previous commit

This commit is contained in:
ed 2017-06-20 15:22:49 +01:00
parent f4d8cf70d1
commit e168a9806a

View file

@ -517,19 +517,13 @@ public:
bool perform (const InvocationInfo& info) override
{
switch (info.commandID)
if (info.commandID == CommandIDs::showFindPanel)
{
case CommandIDs::showFindPanel:
{
find();
return true;
}
default:
return false;
find();
return true;
}
return true;
return false;
}