From 7cb26fbd86a601170306c923da9ac81e04c14c07 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 19 Nov 2025 07:52:12 -0600 Subject: [PATCH] chore(ui): explicitly qualify enable call in CSimpleButton ctor --- src/ui/CSimpleButton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/CSimpleButton.cpp b/src/ui/CSimpleButton.cpp index a1ade6c..878ebad 100644 --- a/src/ui/CSimpleButton.cpp +++ b/src/ui/CSimpleButton.cpp @@ -41,7 +41,7 @@ CSimpleButton::CSimpleButton(CSimpleFrame* parent) : CSimpleFrame(parent) { this->m_textures[BUTTONSTATE_NORMAL] = nullptr; this->m_textures[BUTTONSTATE_PUSHED] = nullptr; - this->Enable(1); + CSimpleButton::Enable(1); this->EnableEvent(SIMPLE_EVENT_MOUSE, -1); this->SetFrameFlag(0x10000, 1); }