Remove false "override" comments.
This commit is contained in:
parent
0b3e5952b7
commit
12c1339296
|
@ -131,7 +131,7 @@ private:
|
|||
public:
|
||||
|
||||
#if defined(DEBUG)
|
||||
void Show( std::ostream& out, int ndx ) const; // override
|
||||
void Show( std::ostream& out, int ndx ) const;
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ public:
|
|||
* may be called soon after ComputeBoundingBox() to return the same EDA_RECT,
|
||||
* as long as the CLASS_GBR_LAYOUT has not changed.
|
||||
*/
|
||||
EDA_RECT GetBoundingBox() const { return m_BoundingBox; } // override
|
||||
EDA_RECT GetBoundingBox() const { return m_BoundingBox; }
|
||||
|
||||
void SetBoundingBox( const EDA_RECT& aBox ) { m_BoundingBox = aBox; }
|
||||
|
||||
|
@ -174,7 +174,7 @@ public:
|
|||
bool IsLayerPrintable( int aLayer ) const;
|
||||
|
||||
#if defined(DEBUG)
|
||||
void Show( int nestLevel, std::ostream& os ) const; // overload
|
||||
void Show( int nestLevel, std::ostream& os ) const;
|
||||
|
||||
#endif
|
||||
};
|
||||
|
|
|
@ -84,12 +84,12 @@ public:
|
|||
* may be called soon after ComputeBoundingBox() to return the same EDA_RECT,
|
||||
* as long as the CLASS_PL_EDITOR_LAYOUT has not changed.
|
||||
*/
|
||||
const EDA_RECT GetBoundingBox() const { return m_BoundingBox; } // override
|
||||
const EDA_RECT GetBoundingBox() const { return m_BoundingBox; }
|
||||
|
||||
void SetBoundingBox( const EDA_RECT& aBox ) { m_BoundingBox = aBox; }
|
||||
|
||||
#if defined(DEBUG)
|
||||
void Show( int nestLevel, std::ostream& os ) const; // overload
|
||||
void Show( int nestLevel, std::ostream& os ) const;
|
||||
|
||||
#endif
|
||||
};
|
||||
|
|
|
@ -214,7 +214,7 @@ public:
|
|||
throw( IO_ERROR );
|
||||
|
||||
#if defined(DEBUG)
|
||||
void Show( int nestLevel, std::ostream& os ) const; // overload
|
||||
void Show( int nestLevel, std::ostream& os ) const;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue