force TypeName arrays for XToString to be an array of const char*, not CString

This commit is contained in:
Glenn Maynard
2006-01-04 22:30:51 +00:00
parent 8ed46bd67f
commit b734b602d2
30 changed files with 65 additions and 56 deletions
+2 -2
View File
@@ -11,7 +11,7 @@
#include "Style.h"
#include "ActorUtil.h"
static const CString SelectTypeNames[] = {
static const char *SelectTypeNames[] = {
"SelectOne",
"SelectMultiple",
"SelectNone",
@@ -19,7 +19,7 @@ static const CString SelectTypeNames[] = {
XToString( SelectType, NUM_SELECT_TYPES );
StringToX( SelectType );
static const CString LayoutTypeNames[] = {
static const char *LayoutTypeNames[] = {
"ShowAllInRow",
"ShowOneInRow",
};