diff --git a/eeschema/class_netlist_object.h b/eeschema/class_netlist_object.h index 80667c1238..81c3d93a78 100644 --- a/eeschema/class_netlist_object.h +++ b/eeschema/class_netlist_object.h @@ -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 diff --git a/gerbview/class_gbr_layout.h b/gerbview/class_gbr_layout.h index 6720e2c9f3..13c66345ad 100644 --- a/gerbview/class_gbr_layout.h +++ b/gerbview/class_gbr_layout.h @@ -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 }; diff --git a/pagelayout_editor/class_pl_editor_layout.h b/pagelayout_editor/class_pl_editor_layout.h index db04fcc3ce..e7f4ac893b 100644 --- a/pagelayout_editor/class_pl_editor_layout.h +++ b/pagelayout_editor/class_pl_editor_layout.h @@ -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 }; diff --git a/pcbnew/class_netclass.h b/pcbnew/class_netclass.h index c12096d617..13eb4f8152 100644 --- a/pcbnew/class_netclass.h +++ b/pcbnew/class_netclass.h @@ -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 };