BambuStudio/slic3r/GUI/Widgets/TextCtrl.h

11 lines
277 B
C
Raw Permalink Normal View History

2024-12-20 06:44:50 +00:00
#ifdef __WXMSW__
class TextCtrl : public wxTextCtrl
{
public:
using wxTextCtrl::wxTextCtrl;
WXHBRUSH DoMSWControlColor(WXHDC pDC, wxColour colBg, WXHWND hWnd) { return wxTextCtrl::DoMSWControlColor(pDC, wxColour(), hWnd); }
};
#else
typedef wxTextCtrl TextCtrl;
#endif