summaryrefslogtreecommitdiff
path: root/src/qdoc/codechunk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/codechunk.cpp')
-rw-r--r--src/qdoc/codechunk.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/qdoc/codechunk.cpp b/src/qdoc/codechunk.cpp
index d6293432e..560058abe 100644
--- a/src/qdoc/codechunk.cpp
+++ b/src/qdoc/codechunk.cpp
@@ -133,16 +133,4 @@ void CodeChunk::append(const QString &lexeme)
s += lexeme;
}
-/*!
- Converts the string with a regular expression that I think
- removes the angle brackets parts and then splits it on "::".
- The result is returned as a string list.
- */
-QStringList CodeChunk::toPath() const
-{
- QString t = s;
- t.remove(QRegExp(QLatin1String("<([^<>]|<([^<>]|<[^<>]*>)*>)*>")));
- return t.split(QLatin1String("::"));
-}
-
QT_END_NAMESPACE