Stop omitted enum value from showing up in Qt namespace doc.

The following omitted enum description can be seen at [1]:

"Ensures that the longest variant is always used when computing the
size of a multi-variant string. (Internal)"

This is because \omitvalue does not allow a description (whereas
\value does).

The description was moved to the qnamespace.h as a code comment.

[1] http://qt-project.org/doc/qt-5/qt.html#TextFlag-enum

Change-Id: I7983613bffa90f3071a4e2d678696391048c8757
Reviewed-by: Martin Smith <martin.smith@digia.com>
This commit is contained in:
Mitch Curtis 2014-03-19 17:21:29 +01:00 committed by The Qt Project
parent 5bcb87babf
commit ff0e7df477
2 changed files with 3 additions and 2 deletions

View File

@ -267,6 +267,8 @@ public:
TextJustificationForced = 0x10000, TextJustificationForced = 0x10000,
TextForceLeftToRight = 0x20000, TextForceLeftToRight = 0x20000,
TextForceRightToLeft = 0x40000, TextForceRightToLeft = 0x40000,
// Ensures that the longest variant is always used when computing the
// size of a multi-variant string.
TextLongestVariant = 0x80000, TextLongestVariant = 0x80000,
TextBypassShaping = 0x100000 TextBypassShaping = 0x100000
}; };

View File

@ -493,8 +493,7 @@
text; otherwise this width is excluded. text; otherwise this width is excluded.
\value TextJustificationForced Ensures that text lines are justified. \value TextJustificationForced Ensures that text lines are justified.
\omitvalue TextLongestVariant Ensures that the longest variant is always used \omitvalue TextLongestVariant
when computing the size of a multi-variant string. (Internal)
\omitvalue TextBypassShaping \omitvalue TextBypassShaping
\omitvalue TextForceLeftToRight \omitvalue TextForceLeftToRight
\omitvalue TextForceRightToLeft \omitvalue TextForceRightToLeft