Handler for calendar info.

git-svn-id: svn://10.0.0.236/trunk@18490 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rhp%netscape.com
1999-01-25 14:27:33 +00:00
parent 7e2cd3bad4
commit 321a2a9f44

View File

@@ -47,14 +47,15 @@ MIME_GetContentType(void)
}
PUBLIC MimeObjectClass *
MIME_CreateContentTypeHandlerClass(const char *content_type, PRBool *forceInline)
MIME_CreateContentTypeHandlerClass(const char *content_type,
contentTypeHandlerInitStruct *initStruct)
{
MimeObjectClass *class = (MimeObjectClass *)&mimeInlineTextCalendarClass;
/*
* Must set the superclass by hand.
*/
class->superclass = (MimeObjectClass *)MIME_GetmimeInlineTextClass();
*forceInline = PR_FALSE;
initStruct->force_inline_display = PR_FALSE;
return class;
}