From d22c8abecde2c2fc9ef3028e2166d751c896d2ff Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Sun, 26 Sep 2004 14:22:54 +0000 Subject: [PATCH] fix facename git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29399 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/fontdlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mac/carbon/fontdlg.cpp b/src/mac/carbon/fontdlg.cpp index 359e96c9ef..913ee8015b 100644 --- a/src/mac/carbon/fontdlg.cpp +++ b/src/mac/carbon/fontdlg.cpp @@ -103,7 +103,7 @@ pascal OSStatus wxFontDialogEventHandler( EventHandlerCallRef inHandlerCallRef, &theScriptCode, &theLanguageCode); - Ptr szBuffer = new wxChar[theActualLength]; + Ptr szBuffer = NewPtr(theActualLength); ATSUGetIndFontName(fontid, 0, //first font in index array theActualLength, @@ -115,8 +115,8 @@ pascal OSStatus wxFontDialogEventHandler( EventHandlerCallRef inHandlerCallRef, &theLanguageCode); //its unicode - convert it to wx's char value and put it in there - theFont.SetFaceName(wxConvLocal.cWC2WX((wchar_t*)szBuffer)); - delete[] szBuffer; + theFont.SetFaceName(wxConvLocal.cMB2WX((char*)szBuffer)); + DisposePtr(szBuffer); //TODOTODO: Get font family - mayby by the script code? theFont.SetFamily(wxDEFAULT); -- 2.45.2