diff --git a/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.cp b/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.cp index 69d20eca5b9..a06e9e581cc 100644 --- a/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.cp +++ b/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.cp @@ -42,10 +42,16 @@ CRDFNotificationHandler::CreateHTPane() HT_Pane CRDFNotificationHandler::CreateHTPane ( HT_Resource inResource ) +{ + return CreateHTPane ( HT_GetRDFResource(inResource) ); +} + +HT_Pane +CRDFNotificationHandler::CreateHTPane ( RDF_Resource inResource ) { HT_Notification notifyStruct = CreateNotificationStruct(); if (notifyStruct) - return HT_PaneFromResource(HT_GetRDFResource(inResource), notifyStruct, false, false, false); + return HT_PaneFromResource(inResource, notifyStruct, false, true, true); else return NULL; } diff --git a/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.h b/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.h index 4f3ccd71809..13d1f949962 100644 --- a/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.h +++ b/mozilla/cmd/macfe/rdfui/CRDFNotificationHandler.h @@ -33,6 +33,7 @@ class CRDFNotificationHandler protected: virtual HT_Pane CreateHTPane ( HT_Resource inResource ) ; + virtual HT_Pane CreateHTPane ( RDF_Resource inResource ) ; virtual HT_Pane CreateHTPane ( const char* inURL, unsigned int inCount, char** inParamNames, char** inParamValues ) ; virtual HT_Pane CreateHTPane();