diff -r 56cd8111b7f7 -r 41300fa6a67c src/corelib/tools/qscopedpointer.cpp --- a/src/corelib/tools/qscopedpointer.cpp Tue Jan 26 12:42:25 2010 +0200 +++ b/src/corelib/tools/qscopedpointer.cpp Tue Feb 02 00:43:10 2010 +0200 @@ -174,18 +174,20 @@ */ /*! - \fn bool QScopedPointer::operator==(const QScopedPointer &other) const + \fn bool operator==(const QScopedPointer &lhs, const QScopedPointer &rhs) - Equality operator. Returns true if the scoped pointer \a other - is pointing to the same object as this pointer, otherwise returns false. + Equality operator. Returns true if the scoped pointers + \a lhs and \a rhs are pointing to the same object. + Otherwise returns false. */ /*! - \fn bool QScopedPointer::operator!=(const QScopedPointer &other) const + \fn bool operator!=(const QScopedPointer &lhs, const QScopedPointer &rhs) - Inequality operator. Returns true if the scoped pointer \a other - is not pointing to the same object as this pointer, otherwise returns false. + Inequality operator. Returns true if the scoped pointers + \a lhs and \a rhs are \e not pointing to the same object. + Otherwise returns false. */ /*!