Skip to content

Commit

Permalink
made image and mask virtual properties in CommandMenuItemBase
Browse files Browse the repository at this point in the history
  • Loading branch information
retailcoder committed Aug 4, 2015
1 parent 910309a commit 6e0bc8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RetailCoder.VBE/UI/Commands/ICommandMenuItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ protected CommandMenuItemBase(ICommand command)
public ICommand Command { get { return _command; } }
public Func<string> Caption { get { return () => RubberduckUI.ResourceManager.GetString(Key, RubberduckUI.Culture); } }
public bool IsParent { get { return false; } }
public Image Image { get { return null; } }
public Image Mask { get { return null; } }
public virtual Image Image { get { return null; } }
public virtual Image Mask { get { return null; } }

}
}

0 comments on commit 6e0bc8d

Please sign in to comment.