Fix swapped M and N in create array dialog string.

This commit is contained in:
Nick Østergaard 2015-04-09 19:41:08 -04:00 committed by Wayne Stambaugh
parent 659ea5184c
commit 44d6595c6a
1 changed files with 1 additions and 1 deletions

View File

@ -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 )