Gerbview: fix typo that prevent lo load a .gbrjob file from command line

Fixes #10921
https://gitlab.com/kicad/code/kicad/issues/10921
This commit is contained in:
jean-pierre charras 2022-02-21 11:32:36 +01:00
parent 46d719ed42
commit 3a5530d441
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
@ -258,9 +258,9 @@ bool GERBVIEW_FRAME::OpenProjectFiles( const std::vector<wxString>& aFileSet, in
{
wxString ext = wxFileName( aFileSet[i] ).GetExt().Lower();
if( ext == wxT( "zip" ) )
if( ext == ArchiveFileExtension )
LoadZipArchiveFile( aFileSet[i] );
else if( ext == wxT( "gbrprj" ) )
else if( ext == GerberJobFileExtension )
LoadGerberJobFile( aFileSet[i] );
else
{