Fix missing override statements

This commit is contained in:
Ian McInerney 2023-02-22 01:43:21 +00:00
parent be19e967dc
commit c6e417c19c
1 changed files with 2 additions and 2 deletions

View File

@ -961,7 +961,7 @@ public:
void AddItem( const PNS::ITEM* aItem, const KIGFX::COLOR4D& aColor, int aOverrideWidth = 0,
const wxString& aName = wxT( "" ),
const SRC_LOCATION_INFO& aSrcLoc = SRC_LOCATION_INFO() )
const SRC_LOCATION_INFO& aSrcLoc = SRC_LOCATION_INFO() ) override
{
if( !m_view || !aItem )
return;
@ -999,7 +999,7 @@ public:
void AddShape( const SHAPE* aShape, const KIGFX::COLOR4D& aColor, int aOverrideWidth = 0,
const wxString& aName = wxT( "" ),
const SRC_LOCATION_INFO& aSrcLoc = SRC_LOCATION_INFO() )
const SRC_LOCATION_INFO& aSrcLoc = SRC_LOCATION_INFO() ) override
{
if( !m_view || !aShape )
return;