summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/corelib/tools/qsharedpointer_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qsharedpointer_impl.h b/src/corelib/tools/qsharedpointer_impl.h
index 6eb0109..e381433 100644
--- a/src/corelib/tools/qsharedpointer_impl.h
+++ b/src/corelib/tools/qsharedpointer_impl.h
@@ -418,7 +418,7 @@ public:
// inline ~QSharedPointer() { }
inline explicit QSharedPointer(T *ptr) : BaseClass(Qt::Uninitialized)
- { internalConstruct(ptr); }
+ { BaseClass::internalConstruct(ptr); }
template <typename Deleter>
inline QSharedPointer(T *ptr, Deleter d) { BaseClass::internalConstruct(ptr, d); }
@@ -448,7 +448,7 @@ public:
template <class X>
inline QSharedPointer<T> &operator=(const QWeakPointer<X> &other)
- { internalSet(other.d, other.value); return *this; }
+ { BaseClass::internalSet(other.d, other.value); return *this; }
template <class X>
QSharedPointer<X> staticCast() const