summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/watchutils.h
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-01-05 16:51:55 +0100
committerhjk <qtc-committer@nokia.com>2010-01-05 18:13:24 +0100
commite3712f96874358dbd97be11a5b80a9a3c07c6747 (patch)
tree2803e03bf27937e89dc859b1611cac1490434fe9 /src/plugins/debugger/watchutils.h
parent84e2e8933dc3e28c04215a4d9601a06e55386e60 (diff)
downloadqt-creator-e3712f96874358dbd97be11a5b80a9a3c07c6747.tar.gz
debugger: refactoring, use QByteArray instead of QString when appropriate
Diffstat (limited to 'src/plugins/debugger/watchutils.h')
-rw-r--r--src/plugins/debugger/watchutils.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/debugger/watchutils.h b/src/plugins/debugger/watchutils.h
index 477eed2d33..d880359fca 100644
--- a/src/plugins/debugger/watchutils.h
+++ b/src/plugins/debugger/watchutils.h
@@ -55,7 +55,7 @@ namespace Internal {
class WatchData;
class GdbMi;
-QString dotEscape(QString str);
+QByteArray dotEscape(QByteArray str);
QString currentTime();
bool isSkippableFunction(const QString &funcName, const QString &fileName);
bool isLeavableFunction(const QString &funcName, const QString &fileName);
@@ -71,7 +71,6 @@ bool hasSideEffects(const QString &exp);
bool isKeyWord(const QString &exp);
bool isPointerType(const QString &type);
bool isCharPointerType(const QString &type);
-bool isAccessSpecifier(const QString &str);
bool startsWithDigit(const QString &str);
QString stripPointerType(QString type);
QString gdbQuoteTypes(const QString &type);