summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorDavid Boddie <dboddie@trolltech.com>2009-11-12 13:25:09 (GMT)
committerDavid Boddie <dboddie@trolltech.com>2009-11-12 13:25:09 (GMT)
commit05c1839531008d3cab40fb6fdaa22667c2133d7e (patch)
treed13d25325b6b34311d30b8c396ffe99b06275e3f /src/corelib
parentd39104d9b0ce43f872d2880baef8e1cff289adb8 (diff)
parentaeec06b844f21286fd228cbcc1cac7f5ea65e46b (diff)
downloadQt-05c1839531008d3cab40fb6fdaa22667c2133d7e.zip
Qt-05c1839531008d3cab40fb6fdaa22667c2133d7e.tar.gz
Qt-05c1839531008d3cab40fb6fdaa22667c2133d7e.tar.bz2
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-doc-team into 4.6
Conflicts: dist/changes-4.6.0 src/corelib/tools/qscopedpointer_p.h src/gui/widgets/qlcdnumber.cpp
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/tools/qscopedpointer_p.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/corelib/tools/qscopedpointer_p.h b/src/corelib/tools/qscopedpointer_p.h
index b1636d5..fb627a4 100644
--- a/src/corelib/tools/qscopedpointer_p.h
+++ b/src/corelib/tools/qscopedpointer_p.h
@@ -76,6 +76,16 @@ public:
return this->d;
}
+ inline bool operator==(const QCustomScopedPointer<T, Cleanup> &other) const
+ {
+ return this->d == other.d;
+ }
+
+ inline bool operator!=(const QCustomScopedPointer<T, Cleanup> &other) const
+ {
+ return this->d != other.d;
+ }
+
private:
Q_DISABLE_COPY(QCustomScopedPointer)
};
@@ -120,6 +130,16 @@ public:
QScopedPointerSharedDeleter<T>::cleanup(oldD);
}
+ inline bool operator==(const QScopedSharedPointer<T> &other) const
+ {
+ return this->d == other.d;
+ }
+
+ inline bool operator!=(const QScopedSharedPointer<T> &other) const
+ {
+ return this->d != other.d;
+ }
+
private:
Q_DISABLE_COPY(QScopedSharedPointer)
};