Bug 1049075: Remove unnecessary "virtual" keyword from ~nsGridCell (which nothing derives from & inherits from nothing). r=tn

This commit is contained in:
Daniel Holbert 2014-08-08 15:22:26 -07:00
parent 0c48b5633d
commit 186a6ed5a3

View File

@ -13,6 +13,8 @@
#ifndef nsGridCell_h___
#define nsGridCell_h___
#include "mozilla/Attributes.h"
class nsBoxLayoutState;
struct nsSize;
class nsIFrame;
@ -25,11 +27,11 @@ class nsIFrame;
* biggest sizes.
*/
class nsGridCell
class nsGridCell MOZ_FINAL
{
public:
nsGridCell();
virtual ~nsGridCell();
~nsGridCell();
nsSize GetPrefSize(nsBoxLayoutState& aBoxLayoutState);
nsSize GetMinSize(nsBoxLayoutState& aBoxLayoutState);