From bfd5f909532845515d57b32a7d35db762d49a09f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 20 Sep 2006 22:41:49 +0000 Subject: [PATCH] fix infinite recursion in DrawStatusField() after latest changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/themes/win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/univ/themes/win32.cpp b/src/univ/themes/win32.cpp index 351f9f0955..e8c1feab5e 100644 --- a/src/univ/themes/win32.cpp +++ b/src/univ/themes/win32.cpp @@ -2677,7 +2677,7 @@ void wxWin32Renderer::DrawStatusField(wxDC& dc, style = wxSB_FLAT; } - DrawStatusField(dc, rect, label, flags, style); + wxStdRenderer::DrawStatusField(dc, rect, label, flags, style); } #endif // wxUSE_STATUSBAR -- 2.45.2