Make PostScript driver less loquacious

Ian Pilcher ian.pilcher at home.com
Sun Apr 1 08:46:55 CDT 2001


Changelog:

    * Ian Pilcher <ian.pilcher at home.com>

      dlls/wineps/init.c, ppd.c

      Change some PS driver FIXMEs/MESSAGEs to WARNs
-- 
========================================================================
Ian Pilcher                                         ian.pilcher at home.com
========================================================================
-------------- next part --------------
diff -ur ../wine-20010326cvs/dlls/wineps/init.c ./dlls/wineps/init.c
--- ../wine-20010326cvs/dlls/wineps/init.c	Tue Mar 27 21:08:21 2001
+++ ./dlls/wineps/init.c	Tue Mar 27 21:52:01 2001
@@ -596,7 +596,7 @@
     for(font = pi->ppd->InstalledFonts; font; font = font->next) {
         afm = PSDRV_FindAFMinList(PSDRV_AFMFontList, font->Name);
 	if(!afm) {
-	    MESSAGE(
+	    TRACE(
 	 "Couldn't find AFM file for installed printer font '%s' - ignoring\n",
 	 font->Name);
 	} else {
diff -ur ../wine-20010326cvs/dlls/wineps/ppd.c ./dlls/wineps/ppd.c
--- ../wine-20010326cvs/dlls/wineps/ppd.c	Sun Feb 11 19:23:26 2001
+++ ./dlls/wineps/ppd.c	Tue Mar 27 21:44:02 2001
@@ -619,7 +619,7 @@
 		    }
 		}
 		if(!page->WinPage)
-		    FIXME("Can't find Windows page type for '%s'\n",
+		    WARN("Can't find Windows page type for '%s'\n",
 			  page->Name);
 	    }
 	    if(!page->FullName) {
@@ -742,7 +742,7 @@
 		}
 	    }
 	    if(!slot->WinBin)
-	        FIXME("Can't find Windows bin type for '%s'\n",
+	        WARN("Can't find Windows bin type for '%s'\n",
 			  slot->Name);
 
 	}   


More information about the wine-patches mailing list