(svn r22479) -Codechange/Fix: Months != quarters. (xi)

This commit is contained in:
frosch
2011-05-19 21:03:23 +00:00
parent 5f668a5e42
commit 09403a4c49
3 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ DECLARE_POSTFIX_INCREMENT(Owner)
static const uint MAX_LENGTH_PRESIDENT_NAME_CHARS = 32; ///< The maximum length of a president name in characters including '\0'
static const uint MAX_LENGTH_COMPANY_NAME_CHARS = 32; ///< The maximum length of a company name in characters including '\0'
static const uint MAX_HISTORY_MONTHS = 24; ///< The maximum number of months kept as performance's history
static const uint MAX_HISTORY_QUARTERS = 24; ///< The maximum number of quarters kept as performance's history
/** Define basic enum properties */
template <> struct EnumPropsT<Owner> : MakeEnumPropsT<Owner, byte, OWNER_BEGIN, OWNER_END, INVALID_OWNER> {};