From 79cb759dc8580da2e82e880cd94a08cd38bb814e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 6 Feb 2009 21:55:09 +0000 Subject: [PATCH] remove incorrect cast of wxString to char* (unnecessary and breaks wxUSE_STL build) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/wincmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 97353c0246..d9242cb931 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -2608,7 +2608,7 @@ static void DrawSizers(wxWindowBase *win) wxMessageOutputDebug dbgout; dbgout.Printf( "%-10s => fullsz=%4d;%-4d clientsz=%4d;%-4d bestsz=%4d;%-4d minsz=%4d;%-4d maxsz=%4d;%-4d virtualsz=%4d;%-4d\n", - (const char*)win->GetName(), + win->GetName(), fullSz.x, fullSz.y, clientSz.x, clientSz.y, bestSz.x, bestSz.y, -- 2.45.2