diff options
author | Harald Fernengel <harald@trolltech.com> | 2009-08-20 13:34:04 (GMT) |
---|---|---|
committer | Harald Fernengel <harald@trolltech.com> | 2009-08-20 15:11:03 (GMT) |
commit | c2bde443f2510798de9d815af13d5947317fc7d1 (patch) | |
tree | a5d0f01d23d99a77efe1024ec94720392f41a379 /src/corelib/tools/qdatetime.cpp | |
parent | ec32395d96ffc90f775bbadb1e9ef6e64c69b5cd (diff) | |
download | Qt-c2bde443f2510798de9d815af13d5947317fc7d1.zip Qt-c2bde443f2510798de9d815af13d5947317fc7d1.tar.gz Qt-c2bde443f2510798de9d815af13d5947317fc7d1.tar.bz2 |
Use QExplicitlySharedDataPointer
part of the task to get rid of QScopedSharedPointer
Diffstat (limited to 'src/corelib/tools/qdatetime.cpp')
-rw-r--r-- | src/corelib/tools/qdatetime.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/corelib/tools/qdatetime.cpp b/src/corelib/tools/qdatetime.cpp index 8b9d202..ecb0bcb 100644 --- a/src/corelib/tools/qdatetime.cpp +++ b/src/corelib/tools/qdatetime.cpp @@ -2231,9 +2231,8 @@ QDateTime::QDateTime(const QDate &date, const QTime &time, Qt::TimeSpec spec) */ QDateTime::QDateTime(const QDateTime &other) - : d(other.d.data()) + : d(other.d) { - d->ref.ref(); } /*! @@ -2250,7 +2249,7 @@ QDateTime::~QDateTime() QDateTime &QDateTime::operator=(const QDateTime &other) { - d.assign(other.d.data()); + d = other.d; return *this; } |