mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added various clang-tidy modernize-* fixes
This commit is contained in:
parent
360be3400d
commit
a234721110
162 changed files with 283 additions and 338 deletions
|
|
@ -35,7 +35,7 @@ namespace juce
|
|||
@see ApplicationCommandInfo, ApplicationCommandManager,
|
||||
ApplicationCommandTarget, KeyPressMappingSet
|
||||
*/
|
||||
typedef int CommandID;
|
||||
using CommandID = int;
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
|
|
@ -338,7 +338,7 @@ class JUCE_API ApplicationCommandManagerListener
|
|||
public:
|
||||
//==============================================================================
|
||||
/** Destructor. */
|
||||
virtual ~ApplicationCommandManagerListener() {}
|
||||
virtual ~ApplicationCommandManagerListener() = default;
|
||||
|
||||
/** Called when an app command is about to be invoked. */
|
||||
virtual void applicationCommandInvoked (const ApplicationCommandTarget::InvocationInfo&) = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue