Default parameters for Python.

This commit is contained in:
Jeff Young 2024-05-07 14:45:42 +01:00
parent ebbfaeaeb7
commit b425c54071
1 changed files with 1 additions and 1 deletions

View File

@ -892,7 +892,7 @@ public:
* @param aBoardEdgesOnly is true if we are interested in board edge segments only.
* @return the board's bounding box.
*/
BOX2I ComputeBoundingBox( bool aBoardEdgesOnly, bool aIncludeHiddenText ) const;
BOX2I ComputeBoundingBox( bool aBoardEdgesOnly = false, bool aIncludeHiddenText = false ) const;
const BOX2I GetBoundingBox() const override
{