remove size on statc CString arrays so that XToString can catch size differences

This commit is contained in:
Chris Danford
2005-05-05 19:55:04 +00:00
parent 11f9384528
commit 3db3500226
22 changed files with 100 additions and 98 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
#include "Course.h"
#include "Style.h"
static const CString SelectTypeNames[NUM_SELECT_TYPES] = {
static const CString SelectTypeNames[] = {
"SelectOne",
"SelectMultiple",
"SelectNone",
@@ -21,7 +21,7 @@ static const CString SelectTypeNames[NUM_SELECT_TYPES] = {
XToString( SelectType, NUM_SELECT_TYPES );
StringToX( SelectType );
static const CString LayoutTypeNames[NUM_LAYOUT_TYPES] = {
static const CString LayoutTypeNames[] = {
"ShowAllInRow",
"ShowOneInRow",
};