mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-20 13:39:11 +08:00
11 lines
277 B
C++
11 lines
277 B
C++
#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
|