|
|
@ -110,14 +110,14 @@ static struct IFACE : public KIFACE_I |
|
|
|
KIFACE_I( aName, aType ) |
|
|
|
{} |
|
|
|
|
|
|
|
bool OnKifaceStart( PGM_BASE* aProgram, int aCtlBits ) |
|
|
|
bool OnKifaceStart( PGM_BASE* aProgram, int aCtlBits ) override |
|
|
|
{ |
|
|
|
return true; |
|
|
|
} |
|
|
|
|
|
|
|
void OnKifaceEnd() {} |
|
|
|
void OnKifaceEnd() override {} |
|
|
|
|
|
|
|
wxWindow* CreateWindow( wxWindow* aParent, int aClassId, KIWAY* aKiway, int aCtlBits = 0 ) |
|
|
|
wxWindow* CreateWindow( wxWindow* aParent, int aClassId, KIWAY* aKiway, int aCtlBits = 0 ) override |
|
|
|
{ |
|
|
|
assert( false ); |
|
|
|
return nullptr; |
|
|
@ -134,7 +134,7 @@ static struct IFACE : public KIFACE_I |
|
|
|
* |
|
|
|
* @return void* - and must be cast into the know type. |
|
|
|
*/ |
|
|
|
void* IfaceOrAddress( int aDataId ) |
|
|
|
void* IfaceOrAddress( int aDataId ) override |
|
|
|
{ |
|
|
|
return NULL; |
|
|
|
} |
|
|
|