diff options
author | hjk <qthjk@ovi.com> | 2012-06-03 21:59:21 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-06-04 00:14:41 +0200 |
commit | 48fcfe0b8dc6a358b777f38284ac7617a20c9f9a (patch) | |
tree | 622c375608879374a138b30b503c48de6be71ec9 /src/plugins/debugger/breakhandler.h | |
parent | 0394699a4cb31a343c1cc2fa87990389ce07da25 (diff) | |
download | qt-creator-48fcfe0b8dc6a358b777f38284ac7617a20c9f9a.tar.gz |
debugger: move watchpoint convenience functions to breakhandler
Change-Id: I7f214ff5fe6d996c4dd14c6ac181a482ad00c94e
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/breakhandler.h')
-rw-r--r-- | src/plugins/debugger/breakhandler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/debugger/breakhandler.h b/src/plugins/debugger/breakhandler.h index d212b6d9ab..9b5a9df7de 100644 --- a/src/plugins/debugger/breakhandler.h +++ b/src/plugins/debugger/breakhandler.h @@ -168,6 +168,10 @@ public: static QString displayFromThreadSpec(int spec); static int threadSpecFromDisplay(const QString &str); + // Convenience. + void setWatchpointAtAddress(quint64 address, unsigned size); + void setWatchpointAtExpression(const QString &exp); + private: // QAbstractItemModel implementation. int columnCount(const QModelIndex &parent) const; |