]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/fontutil.cpp
added wxGetMultiChoice() (which refuses to work for some reason - will fix
[wxWidgets.git] / src / os2 / fontutil.cpp
index 5f135b032739eabf182143336363efbf312b16eb..c5e987133b94e6b8fbab8d66446bf13a84849f23 100644 (file)
@@ -8,6 +8,10 @@
 // Copyright:   (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
 // Licence:     wxWindows license
 ///////////////////////////////////////////////////////////////////////////////
+#define DEBUG_PRINTF(NAME)   { static int raz=0; \
+  printf( #NAME " %i\n",raz); fflush(stdout);       \
+   raz++;                                        \
+ }
 
 // ============================================================================
 // declarations
 // headers
 // ----------------------------------------------------------------------------
 
+#ifdef __GNUG__
+    #pragma implementation "fontutil.h"
+#endif
+
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -81,7 +89,7 @@ bool wxNativeEncodingInfo::FromString(const wxString& s)
 wxString wxNativeEncodingInfo::ToString() const
 {
     wxString s;
-    
+
     s << (long)encoding << _T(';') << facename;
 
 // TODO: what is this for OS/2?
@@ -330,6 +338,8 @@ void wxFillLogFont(LOGFONT *logFont, const wxFont *font)
 
 wxFont wxCreateFontFromLogFont(const LOGFONT *logFont)
 {
+DEBUG_PRINTF(wxCreateFontFromLogFont)
+
     // extract family from pitch-and-family
     int lfFamily = logFont->lfPitchAndFamily;
     if ( lfFamily & FIXED_PITCH )