From 5f5e7c5455d52826b0bd50f64fcffb7695ce970d Mon Sep 17 00:00:00 2001 From: Slávek Banko Date: Sat, 29 Jun 2013 12:56:53 +0200 Subject: Initial TQt conversion --- src/element.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/element.cpp') 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 +#include #include #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 ); -- cgit v1.2.3