summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2013-10-24 12:56:43 +0200
committerFrederik Gladhorn <frederik.gladhorn@digia.com>2013-10-24 12:56:43 +0200
commit9b5cc9e6082366cbe6e76c29d493448ef496b43e (patch)
tree320e5e874eb1e642b4f1d9985f9deedb29fb6779
parentcd91a949bb7554595e864215b52c29c1558dc958 (diff)
parent925f1264c590c12aaa5f93a687c7b2aba4370115 (diff)
downloadqtscript-9b5cc9e6082366cbe6e76c29d493448ef496b43e.tar.gz
Merge remote-tracking branch 'origin/stable' into dev
Change-Id: I5b59732e2ff9df6bd674fd0e3fba058d0e5d51f9
-rw-r--r--src/scripttools/debugging/qscriptcompletiontask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripttools/debugging/qscriptcompletiontask.cpp b/src/scripttools/debugging/qscriptcompletiontask.cpp
index 769293d..fe0cb93 100644
--- a/src/scripttools/debugging/qscriptcompletiontask.cpp
+++ b/src/scripttools/debugging/qscriptcompletiontask.cpp
@@ -120,7 +120,7 @@ namespace {
static bool isIdentChar(const QChar &ch)
{
static QChar underscore = QLatin1Char('_');
- return ch.isLetter() || (ch == underscore);
+ return ch.isLetterOrNumber() || (ch == underscore);
}
static bool isPrefixOf(const QString &prefix, const QString &what)