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

Add final specifiers in implementation files

This commit is contained in:
Tom Poole 2023-10-06 13:08:34 +01:00
parent aee5a3a45e
commit 6bf9bb9a2e
315 changed files with 1031 additions and 1025 deletions

View file

@ -31,7 +31,7 @@ std::unique_ptr<ScopedMessageBoxInterface> ScopedMessageBoxInterface::create (co
// On Linux, we re-use the AlertWindow rather than using a platform-specific dialog.
// For consistency with the NativeMessageBox on other platforms, the result code must
// match the button index, hence this adapter.
class MessageBox : public ScopedMessageBoxInterface
class MessageBox final : public ScopedMessageBoxInterface
{
public:
explicit MessageBox (const MessageBoxOptions& options)