mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 1049075
: Remove unnecessary "virtual" keyword from ~nsGridCell (which nothing derives from & inherits from nothing). r=tn
This commit is contained in:
parent
0c48b5633d
commit
186a6ed5a3
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user