diff options
Diffstat (limited to 'src/element.cpp')
-rw-r--r-- | src/element.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/element.cpp b/src/element.cpp index 73b3178..e3e1a2e 100644 --- a/src/element.cpp +++ b/src/element.cpp @@ -17,7 +17,7 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include <qstring.h> +#include <ntqstring.h> #include <xsltransform.h> #include "element.h" @@ -36,10 +36,10 @@ namespace BibTeX // nothing } - bool Element::isSimpleString( const QString &text ) + bool Element::isSimpleString( const TQString &text ) { bool result = TRUE; - const QString goodChars = "abcdefghijklmnopqrstuvwxyz0123456789-_"; + const TQString goodChars = "abcdefghijklmnopqrstuvwxyz0123456789-_"; for ( unsigned int i = 0; result && i < text.length(); i++ ) result &= goodChars.contains( text.at( i ), FALSE ); |