summaryrefslogtreecommitdiffstats
path: root/src/element.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-06-29 12:56:53 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-04 03:11:35 +0200
commit5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch)
treec8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/element.cpp
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/element.cpp')
-rw-r--r--src/element.cpp6
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 );