diff options
Diffstat (limited to 'krecipes/src/datablocks/elementlist.h')
-rw-r--r-- | krecipes/src/datablocks/elementlist.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/krecipes/src/datablocks/elementlist.h b/krecipes/src/datablocks/elementlist.h index 1a4f369..85a7dd1 100644 --- a/krecipes/src/datablocks/elementlist.h +++ b/krecipes/src/datablocks/elementlist.h @@ -11,15 +11,15 @@ #ifndef ELEMENTLIST_H #define ELEMENTLIST_H -#include <qvaluelist.h> -#include <qregexp.h> +#include <ntqvaluelist.h> +#include <ntqregexp.h> #include "element.h" /** @author Unai Garro */ -class ElementList: public QValueList<Element> +class ElementList: public TQValueList<Element> { public: ElementList(); @@ -28,16 +28,16 @@ public: bool containsId( int id ) const; bool containsSubSet( ElementList &el ); - Element findByName( const QString & ) const; - Element findByName( const QRegExp & ) const; + Element findByName( const TQString & ) const; + Element findByName( const TQRegExp & ) const; Element getElement( int index ) const; - QString join( const QString &sep ) const; + TQString join( const TQString &sep ) const; - static ElementList split( const QString &sep, const QString &str ); + static ElementList split( const TQString &sep, const TQString &str ); }; -typedef QValueList<int> IDList; +typedef TQValueList<int> IDList; #endif |