diff options
Diffstat (limited to 'src/element.cpp')
-rw-r--r-- | src/element.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/element.cpp b/src/element.cpp index 9e813a0..0723702 100644 --- a/src/element.cpp +++ b/src/element.cpp @@ -38,11 +38,11 @@ namespace BibTeX bool Element::isSimpleString( const TQString &text ) { - bool result = TRUE; + bool result = true; const TQString goodChars = "abcdefghijklmnopqrstuvwxyz0123456789-_"; for ( unsigned int i = 0; result && i < text.length(); i++ ) - result &= goodChars.contains( text.at( i ), FALSE ); + result &= goodChars.contains( text.at( i ), false ); return result; } |