diff --git a/src/corelib/global/qflags.qdoc b/src/corelib/global/qflags.qdoc index 64337bd2f60..9d5fa181b20 100644 --- a/src/corelib/global/qflags.qdoc +++ b/src/corelib/global/qflags.qdoc @@ -430,11 +430,10 @@ */ /*! - \fn template bool operator==(QFlags lhs, QFlags rhs) - \fn template bool operator==(QFlags lhs, Enum rhs) - \fn template bool operator==(Enum lhs, QFlags rhs) + \fn template bool QFlags::operator==(QFlags lhs, QFlags rhs) + \fn template bool QFlags::operator==(QFlags lhs, Enum rhs) + \fn template bool QFlags::operator==(Enum lhs, QFlags rhs) \since 6.2 - \relates QFlags Compares \a lhs and \a rhs for equality; the two arguments are considered equal if they represent exactly the same value @@ -442,11 +441,10 @@ */ /*! - \fn template bool operator!=(QFlags lhs, QFlags rhs) - \fn template bool operator!=(QFlags lhs, Enum rhs) - \fn template bool operator!=(Enum lhs, QFlags rhs) + \fn template bool QFlags::operator!=(QFlags lhs, QFlags rhs) + \fn template bool QFlags::operator!=(QFlags lhs, Enum rhs) + \fn template bool QFlags::operator!=(Enum lhs, QFlags rhs) \since 6.2 - \relates QFlags Compares \a lhs and \a rhs for inequality; the two arguments are considered different if they don't represent exactly the same value