- should be replaced with an empty string. The same issue also applies to
- the structure fields which used to contain "const wxChar *" pointers (such
- as wxCmdLineEntryDesc::shortName, longName and description fields) and are
- now wxStrings: empty strings should be assigned to them instead of NULL.
+ should be replaced with an empty string.
+
+
+- Some structure fields which used to be of type "const wxChar *" (such as
+ wxCmdLineEntryDesc::shortName, longName and description fields) are now of
+ type "const char *", you need to remove wxT() or _T() around the values used
+ to initialize them (which should normally always be ASCII).