From c23b6ca96735de2b7f4e12e49d9f2aeac0f23f0d Mon Sep 17 00:00:00 2001 From: "timeless%mac.com" Date: Thu, 7 Dec 2000 01:36:19 +0000 Subject: [PATCH] Fix for bug 53661 Portable Network Graphic should be changed to PNG to match GIF & JPEG. Decission was to expand GIF and JPEG. patch by walk84@usa.net r=timeless sr=alecf git-svn-id: svn://10.0.0.236/trunk@83348 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/components/winhooks/nsWindowsHooks.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/xpfe/components/winhooks/nsWindowsHooks.cpp b/mozilla/xpfe/components/winhooks/nsWindowsHooks.cpp index 52840e17187..f4ac22991f2 100644 --- a/mozilla/xpfe/components/winhooks/nsWindowsHooks.cpp +++ b/mozilla/xpfe/components/winhooks/nsWindowsHooks.cpp @@ -48,8 +48,8 @@ const char *xulExts[] = { ".xul", 0 }; const char *htmExts[] = { ".htm", ".html", 0 }; static FileTypeRegistryEntry - jpg( jpgExts, "MozillaJPEG", "Mozilla JPEG Image File" ), - gif( gifExts, "MozillaGIF", "Mozilla GIF Image File" ), + jpg( jpgExts, "MozillaJPEG", "Mozilla Joint Photographic Experts Group Image File" ), + gif( gifExts, "MozillaGIF", "Mozilla Graphics Interchange Format Image File" ), png( pngExts, "MozillaPNG", "Mozilla Portable Network Graphic Image File" ), xml( xmlExts, "MozillaXML", "Mozilla XML File Document" ), xul( xulExts, "MozillaXUL", "Mozilla XUL File Document" );