char zStyle[30];
if (hWnd == NULLHANDLE)
+ return;
//
// The fonts available for Presentation Params are just three
switch(rFont.GetFamily())
{
case wxSCRIPT:
+ strcpy(zFacename, "Script");
+ break;
+
case wxDECORATIVE:
case wxROMAN:
- strcpy(zFacename,"Times New Roman");
+ strcpy(zFacename,"Tms Rmn");
break;
case wxTELETYPE:
- case wxMODERN:
strcpy(zFacename, "Courier");
break;
+ case wxMODERN:
+ strcpy(zFacename, "System VIO");
+ break;
+
case wxSWISS:
+ strcpy(zFacename, "Helv");
+ break;
+
case wxDEFAULT:
default:
- strcpy(zFacename, "Helvetica");
+ strcpy(zFacename, "System VIO");
break;
}