1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Tidying: Change misleading variable name

This commit is contained in:
attila 2025-07-14 16:26:35 +02:00 committed by Attila Szarvas
parent 8f30ba70cc
commit b674a4c130
2 changed files with 3 additions and 3 deletions

View file

@ -80,9 +80,9 @@ VBlankAttachment::~VBlankAttachment()
cleanup();
}
void VBlankAttachment::onVBlank (double timestampMs)
void VBlankAttachment::onVBlank (double timestampSec)
{
NullCheckedInvocation::invoke (callback, timestampMs);
NullCheckedInvocation::invoke (callback, timestampSec);
}
void VBlankAttachment::componentParentHierarchyChanged (Component&)

View file

@ -80,7 +80,7 @@ public:
private:
//==============================================================================
void onVBlank (double timestampMs) override;
void onVBlank (double timestampSec) override;
//==============================================================================
void componentParentHierarchyChanged (Component&) override;