+ {
+ if (strcmp(internal,"-${ScreenDefaultBase}${ScreenStdSuffix}") == 0)
+ {
+ /* we did not find any font name in the standard list.
+ this can (hopefully does) mean that someone supplied
+ the facename in the wxFont constructor so we insert
+ it here */
+
+ strcpy( resource,"-*-" ); /* any producer */
+ strcat( resource, names[0] ); /* facename */
+ strcat( resource, "${ScreenStdSuffix}" ); /* add size params later on */
+ *v = copystring(resource);
+ }
+ else
+ {
+ *v = copystring(internal);
+ }
+ }