diff options
Diffstat (limited to 'kate/cppsymbolviewer/tcl_parser.cpp')
-rw-r--r-- | kate/cppsymbolviewer/tcl_parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/cppsymbolviewer/tcl_parser.cpp b/kate/cppsymbolviewer/tcl_parser.cpp index fca2a5d..3402b67 100644 --- a/kate/cppsymbolviewer/tcl_parser.cpp +++ b/kate/cppsymbolviewer/tcl_parser.cpp @@ -80,8 +80,8 @@ void KatePluginSymbolViewerView::parseTclSymbols(void) { stripped = currline.right(currline.length() - 3); stripped = stripped.simplifyWhiteSpace(); - int fnd = stripped.tqfind(' '); - //fnd = stripped.tqfind(";"); + int fnd = stripped.find(' '); + //fnd = stripped.find(";"); if(fnd > 0) stripped = stripped.left(fnd); if (treeMode) |