Fix double class name

Mostly cosmetic change, although there are compilers that choke on this.

The C++ standard specifies that classes contain themselves as members,
probably so they shadow any other definition of the same name for their own
member functions, but there is really no reason why the class name should
be duplicated here.
This commit is contained in:
Simon Richter 2016-01-14 20:43:38 -05:00 committed by Chris Pavlina
parent b30a461ee9
commit 1190b7880a
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ IO_MGR::PCB_FILE_T plugin_type( const wxString& aFileName, int aCtl )
{
pluginType = IO_MGR::LEGACY;
}
else if( fn.GetExt() == IO_MGR::GetFileExtension( IO_MGR::IO_MGR::PCAD ) )
else if( fn.GetExt() == IO_MGR::GetFileExtension( IO_MGR::PCAD ) )
{
pluginType = IO_MGR::PCAD;
}