summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-09-28 10:29:43 (GMT)
committerJanne Anttila <janne.anttila@digia.com>2009-09-28 10:29:43 (GMT)
commitfe4dc49c8f4f201f7286027adb2ba21ffebc14cc (patch)
tree20c000b569f057b23a9b371af6eb2075000c0ba4 /src/corelib/tools
parent075f157eee733d89a492f34a07787944ce55b7aa (diff)
downloadQt-fe4dc49c8f4f201f7286027adb2ba21ffebc14cc.zip
Qt-fe4dc49c8f4f201f7286027adb2ba21ffebc14cc.tar.gz
Qt-fe4dc49c8f4f201f7286027adb2ba21ffebc14cc.tar.bz2
Fixed qsharedpointer auto test build break for Symbian OS.
RVCT has problems with scoping, the similar workaround has been used in qhash.h also. Reviewed-by: Janne Koskinen
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qsharedpointer_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qsharedpointer_impl.h b/src/corelib/tools/qsharedpointer_impl.h
index 4f05eda..2acbf17 100644
--- a/src/corelib/tools/qsharedpointer_impl.h
+++ b/src/corelib/tools/qsharedpointer_impl.h
@@ -478,7 +478,7 @@ public:
{ BaseClass::internalSet(other.d, other.value); return *this; }
inline void swap(QSharedPointer &other)
- { internalSwap(other); }
+ { QSharedPointer<T>::internalSwap(other); }
template <class X>
QSharedPointer<X> staticCast() const