summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/watchhandler.h
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-02-17 19:00:33 +0100
committerhjk <qtc-committer@nokia.com>2011-02-17 19:01:07 +0100
commit98c4b82c2d9046f635c9991ef2fcce9c42910893 (patch)
tree4016faab1f45317ab0f8f6db3c89f890824fe17f /src/plugins/debugger/watchhandler.h
parent8c3e61e083b801f151c6b05aa26264fcad4b7cf9 (diff)
downloadqt-creator-98c4b82c2d9046f635c9991ef2fcce9c42910893.tar.gz
debugger: make output format of non-printable characters customizable
Diffstat (limited to 'src/plugins/debugger/watchhandler.h')
-rw-r--r--src/plugins/debugger/watchhandler.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchhandler.h b/src/plugins/debugger/watchhandler.h
index 10d96826ec..950bf4fdaa 100644
--- a/src/plugins/debugger/watchhandler.h
+++ b/src/plugins/debugger/watchhandler.h
@@ -180,6 +180,9 @@ public:
void addTypeFormats(const QByteArray &type, const QStringList &formats);
+ void setUnprintableBase(int base) { m_unprintableBase = base; }
+ int unprintableBase() const { return m_unprintableBase; }
+
QByteArray watcherName(const QByteArray &exp);
void synchronizeWatchers();
QString editorContents();
@@ -214,6 +217,7 @@ private:
WatchModel *m_watchers;
WatchModel *m_tooltips;
DebuggerEngine *m_engine;
+ static int m_unprintableBase;
};
} // namespace Internal