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:
parent
8f30ba70cc
commit
b674a4c130
2 changed files with 3 additions and 3 deletions
|
|
@ -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&)
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ public:
|
|||
|
||||
private:
|
||||
//==============================================================================
|
||||
void onVBlank (double timestampMs) override;
|
||||
void onVBlank (double timestampSec) override;
|
||||
|
||||
//==============================================================================
|
||||
void componentParentHierarchyChanged (Component&) override;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue