summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlessandro Portale <aportale@trolltech.com>2009-06-02 11:29:36 (GMT)
committerAlessandro Portale <aportale@trolltech.com>2009-06-02 11:29:36 (GMT)
commitbbbd6e7ec5845225868c01116fceb9b1e5cdb038 (patch)
tree0871f867c6becfee9296419cde17afa96386fe82 /src
parentaddc4d77f781f05a203638a26035afb1076c6d64 (diff)
parent1cc91f422888d68f24dec136f521620300e35558 (diff)
downloadQt-bbbd6e7ec5845225868c01116fceb9b1e5cdb038.zip
Qt-bbbd6e7ec5845225868c01116fceb9b1e5cdb038.tar.gz
Qt-bbbd6e7ec5845225868c01116fceb9b1e5cdb038.tar.bz2
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-public
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qiodevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/io/qiodevice.cpp b/src/corelib/io/qiodevice.cpp
index 3816803..765bf40 100644
--- a/src/corelib/io/qiodevice.cpp
+++ b/src/corelib/io/qiodevice.cpp
@@ -362,7 +362,7 @@ QIODevice::QIODevice()
{
#if defined QIODEVICE_DEBUG
QFile *file = qobject_cast<QFile *>(this);
- printf("%p QIODevice::QIODevice(\"%s\") %s\n", this, className(),
+ printf("%p QIODevice::QIODevice(\"%s\") %s\n", this, metaObject()->className(),
qPrintable(file ? file->fileName() : QString()));
#endif
}
@@ -375,7 +375,7 @@ QIODevice::QIODevice(QObject *parent)
: QObject(*new QIODevicePrivate, parent)
{
#if defined QIODEVICE_DEBUG
- printf("%p QIODevice::QIODevice(%p \"%s\")\n", this, parent, className());
+ printf("%p QIODevice::QIODevice(%p \"%s\")\n", this, parent, metaObject()->className());
#endif
}