Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public virtual bool CanExtend(object o)
/// This is an extender property that we offer to all components
/// on the form. It implements the "Name" property.
/// </summary>
public static void SetName(IComponent comp, string newName)
public virtual void SetName(IComponent comp, string newName)
{
ISite? site = comp.Site;
site?.Name = newName;
Expand Down