Alien-wxWidgets

 view release on metacpan or  search on metacpan

patches/wxMac-2.8.10-fontdlg.patch  view on Meta::CPAN

diff -u src/mac/carbon/fontdlgosx.mm src/mac/carbon/fontdlgosx.mm
--- src/mac/carbon/fontdlgosx.mm	2007/01/22 21:46:14	44296
+++ src/mac/carbon/fontdlgosx.mm	2009/09/01 13:36:08	61800
@@ -169,7 +169,11 @@
 
     NSModalSession session = [NSApp beginModalSessionForWindow:fontPanel];
 
-    [NSApp runModalSession:session];
+    for (;;)
+    {
+        if ([NSApp runModalSession:session] != NSRunContinuesResponse)
+            break;
+    }
 
     [NSApp endModalSession:session];
 



( run in 0.607 second using v1.01-cache-2.11-cpan-5735350b133 )