summaryrefslogtreecommitdiffstats
path: root/kommander/editor/asciivalidator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/editor/asciivalidator.cpp')
-rw-r--r--kommander/editor/asciivalidator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kommander/editor/asciivalidator.cpp b/kommander/editor/asciivalidator.cpp
index 947b3ec1..33381e0b 100644
--- a/kommander/editor/asciivalidator.cpp
+++ b/kommander/editor/asciivalidator.cpp
@@ -67,7 +67,7 @@ TQValidator::State AsciiValidator::validate( TQString &s, int & ) const
}
}
- if ( allowedChars.tqfind( s[ i ] ) != -1 )
+ if ( allowedChars.find( s[ i ] ) != -1 )
continue;
s[i] = '_';