From 44d6595c6ad2a67a3cb0d3a02c166d6fdb69edce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nick=20=C3=98stergaard?= Date: Thu, 9 Apr 2015 19:41:08 -0400 Subject: [PATCH] Fix swapped M and N in create array dialog string. --- pcbnew/dialogs/dialog_create_array.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/dialogs/dialog_create_array.cpp b/pcbnew/dialogs/dialog_create_array.cpp index bc50311ab5..488f784c95 100644 --- a/pcbnew/dialogs/dialog_create_array.cpp +++ b/pcbnew/dialogs/dialog_create_array.cpp @@ -145,7 +145,7 @@ static const std::string& alphabetFromNumberingScheme( static const std::string alphaNumeric = "0123456789"; static const std::string alphaHex = "0123456789ABCDEF"; static const std::string alphaFull = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; - static const std::string alphaNoIOSQXZ = "ABCDEFGHJKLNMPRTUVWY"; + static const std::string alphaNoIOSQXZ = "ABCDEFGHJKLMNPRTUVWY"; static const std::string alphaEmpty = ""; switch( type )