summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/threadshandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/threadshandler.h')
-rw-r--r--src/plugins/debugger/threadshandler.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/debugger/threadshandler.h b/src/plugins/debugger/threadshandler.h
index 9ef6f14cc7..83f20ccd9d 100644
--- a/src/plugins/debugger/threadshandler.h
+++ b/src/plugins/debugger/threadshandler.h
@@ -52,7 +52,7 @@ public:
ThreadId currentThread() const;
ThreadId threadAt(int index) const;
void setCurrentThread(ThreadId id);
- QByteArray pidForGroupId(const QByteArray &groupId) const;
+ QString pidForGroupId(const QString &groupId) const;
void updateThread(const ThreadData &threadData);
void updateThreads(const GdbMi &data);
@@ -63,15 +63,15 @@ public:
ThreadData thread(ThreadId id) const;
QAbstractItemModel *model();
- void notifyGroupCreated(const QByteArray &groupId, const QByteArray &pid);
- bool notifyGroupExited(const QByteArray &groupId); // Returns true when empty.
+ void notifyGroupCreated(const QString &groupId, const QString &pid);
+ bool notifyGroupExited(const QString &groupId); // Returns true when empty.
// Clear out all frame information
- void notifyRunning(const QByteArray &data);
+ void notifyRunning(const QString &data);
void notifyRunning(ThreadId threadId);
void notifyAllRunning();
- void notifyStopped(const QByteArray &data);
+ void notifyStopped(const QString &data);
void notifyStopped(ThreadId threadId);
void notifyAllStopped();
@@ -85,7 +85,7 @@ private:
ThreadId m_currentId;
bool m_resetLocationScheduled;
- QHash<QByteArray, QByteArray> m_pidForGroupId;
+ QHash<QString, QString> m_pidForGroupId;
};
} // namespace Internal