Skip to content

Commit

Permalink
Revert "made image and mask virtual properties in CommandMenuItemBase"
Browse files Browse the repository at this point in the history
This reverts commit 6e0bc8d.
  • Loading branch information
retailcoder committed Aug 5, 2015
1 parent 6e0bc8d commit 6fffafb
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 virtual Image Image { get { return null; } }
public virtual Image Mask { get { return null; } }
public Image Image { get { return null; } }
public Image Mask { get { return null; } }

}
}

0 comments on commit 6fffafb

Please sign in to comment.