RelatedLink

ContentType ist nun auch static

git-svn-id: https://svn.libreccm.org/ccm/trunk@804 8810af33-2d31-482b-a856-94f89814c4df
master
quasi 2011-03-28 11:40:30 +00:00
parent 8c7c33efee
commit ea0b4df5f1
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ import com.arsdigita.cms.contenttypes.ui.LinkTable;
public class RelatedLinkPropertiesStep extends LinkPropertiesStep { public class RelatedLinkPropertiesStep extends LinkPropertiesStep {
protected static String s_linkListName = "genericLink"; protected static String s_linkListName = "genericLink";
protected ContentType m_contentType = null; protected static ContentType s_contentType = null;
/** /**
* Constructor. Creates a <code>RelatedLinkPropertiesStep</code> given an * Constructor. Creates a <code>RelatedLinkPropertiesStep</code> given an
@ -87,7 +87,7 @@ public class RelatedLinkPropertiesStep extends LinkPropertiesStep {
return new RelatedLinkPropertyForm(getItemSelectionModel(), return new RelatedLinkPropertyForm(getItemSelectionModel(),
getLinkSelectionModel(), getLinkSelectionModel(),
s_linkListName, s_linkListName,
m_contentType); s_contentType);
} }
} }