SVN commit 1139625 by vcarbune: The type of an NGC object in ngcic.dat may have 2 digits CCMAIL:kstars-devel@kde.org M +1 -1 deepskycomponent.cpp --- trunk/KDE/kdeedu/kstars/kstars/skycomponents/deepskycomponent.cpp #1139624:1139625 @@ -110,7 +110,7 @@ if (ss == " " ) { mag = 99.9f; } else { mag = ss.toFloat(); } //object type - type = line.mid( 29, 1 ).toInt(); + type = line.mid( 28, 2 ).toInt(); //major and minor axes ss = line.mid( 31, 5 );