diff options
author | Harald Fernengel <harald@trolltech.com> | 2009-08-10 15:11:20 (GMT) |
---|---|---|
committer | Harald Fernengel <harald@trolltech.com> | 2009-08-10 15:11:20 (GMT) |
commit | 361e40191a82b69fe7549215bd27db94c05fc083 (patch) | |
tree | bf67eefdfefcd2b44bd215a8765f7aa0f7020660 /src/corelib | |
parent | d62491f595d59a63d9c493a223573e9af2306214 (diff) | |
download | Qt-361e40191a82b69fe7549215bd27db94c05fc083.zip Qt-361e40191a82b69fe7549215bd27db94c05fc083.tar.gz Qt-361e40191a82b69fe7549215bd27db94c05fc083.tar.bz2 |
s/class/struct/
Stop confusing MSVC by correctly forward declare QScopedPointerDeleter
as struct
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/io/qdir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qdir.cpp b/src/corelib/io/qdir.cpp index 836fa44..5e24bf4 100644 --- a/src/corelib/io/qdir.cpp +++ b/src/corelib/io/qdir.cpp @@ -86,7 +86,7 @@ class QDirPrivate QDir *q_ptr; Q_DECLARE_PUBLIC(QDir) - friend class QScopedPointerDeleter<QDirPrivate>; + friend struct QScopedPointerDeleter<QDirPrivate>; protected: QDirPrivate(QDir*, const QDir *copy=0); ~QDirPrivate(); |