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:
parent
f4d8cf70d1
commit
e168a9806a
1 changed files with 4 additions and 10 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue