Properties: Code formatting

This commit is contained in:
Maciej Suminski 2020-02-06 08:39:06 +01:00 committed by Jon Evans
parent f6f6ebd5f9
commit 3220a1dfbc
2 changed files with 3 additions and 3 deletions

View File

@ -273,11 +273,11 @@ protected:
if ( !( std::is_enum<T>::value && a.CheckType<int>() ) && !a.CheckType<T>() )
throw std::invalid_argument( "Invalid requested type" );
return wxANY_AS(a, T);
return wxANY_AS( a, T );
}
virtual void setter( void* aObject, wxAny& aValue ) = 0;
virtual wxAny getter( void* aObject ) const = 0;
virtual wxAny getter( const void* aObject ) const = 0;
private:
const wxString m_name;

View File

@ -1,5 +1,5 @@
/*
* This program source code file is part of KICAD, a free EDA CAD application.
* This program source code file is part of KICAD, a free EDA CAD application.
*
* Copyright (C) 2020 CERN
* @author Maciej Suminski <maciej.suminski@cern.ch>