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

Direct2DHwndContext: Remove unnecessary prefixes

This commit is contained in:
reuk 2025-12-10 11:31:33 +00:00
parent f6a81fe5f2
commit 8eea88dec3
No known key found for this signature in database

View file

@ -297,12 +297,12 @@ private:
};
//==============================================================================
struct Direct2DHwndContext::HwndPimpl : public Direct2DGraphicsContext::Pimpl
struct Direct2DHwndContext::HwndPimpl : public Pimpl
{
private:
struct SwapChainThread
{
SwapChainThread (Direct2DHwndContext::HwndPimpl& ownerIn, HANDLE swapHandle)
SwapChainThread (HwndPimpl& ownerIn, HANDLE swapHandle)
: owner (ownerIn),
swapChainEventHandle (swapHandle)
{
@ -319,7 +319,7 @@ private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SwapChainThread)
private:
Direct2DHwndContext::HwndPimpl& owner;
HwndPimpl& owner;
HANDLE swapChainEventHandle = nullptr;
WindowsScopedEvent quitEvent;