summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2008-12-12 13:14:51 +0100
committerhjk <qtc-committer@nokia.com>2008-12-12 13:14:51 +0100
commit47c9f22f34a42d5e6b8252340ae90522d21168c3 (patch)
tree95456db355aff8a851c0e372bdd326f2f7f4c79e /bin
parent96c446ffd4df7db11582e8f631269e1332f878e6 (diff)
downloadqt-creator-47c9f22f34a42d5e6b8252340ae90522d21168c3.tar.gz
remove dead code from dumpers
Diffstat (limited to 'bin')
-rw-r--r--bin/gdbmacros/gdbmacros.cpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/bin/gdbmacros/gdbmacros.cpp b/bin/gdbmacros/gdbmacros.cpp
index a1b4e5afb8..775819934b 100644
--- a/bin/gdbmacros/gdbmacros.cpp
+++ b/bin/gdbmacros/gdbmacros.cpp
@@ -130,8 +130,6 @@ int qtGhVersion = QT_VERSION;
#include <ctype.h>
#include <stdio.h>
-//#include <sys/types.h>
-
#ifdef Q_OS_WIN
# include <windows.h>
#endif
@@ -173,9 +171,6 @@ public:
// id of the thread that owns the object
QThreadData *threadData;
- void moveToThread_helper();
- void setThreadData_helper(QThreadData *currentData, QThreadData *targetData);
- void _q_reregisterTimers(void *pointer);
struct Sender
{
@@ -189,20 +184,12 @@ public:
QList<QPointer<QObject> > eventFilters;
- struct ExtraData
- {
-#ifndef QT_NO_USERDATA
- QVector<QObjectUserData *> userData;
-#endif
- QList<QByteArray> propertyNames;
- QList<QVariant> propertyValues;
- };
+ struct ExtraData;
ExtraData *extraData;
mutable quint32 connectedSignals;
QString objectName;
- // Note: you must hold the signalSlotLock() before accessing the lists below or calling the functions
struct Connection
{
QObject *receiver;
@@ -215,8 +202,6 @@ public:
QObjectConnectionListVector *connectionLists;
QList<Sender> senders;
int *deleteWatch;
-
- static QObjectPrivate *get(QObject *o) { return o->d_func(); }
};
#if defined(QT_BEGIN_NAMESPACE)