diff options
Diffstat (limited to 'kexi/kexidb/queryschemaparameter.h')
| -rw-r--r-- | kexi/kexidb/queryschemaparameter.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kexi/kexidb/queryschemaparameter.h b/kexi/kexidb/queryschemaparameter.h index e7c008805..96168719e 100644 --- a/kexi/kexidb/queryschemaparameter.h +++ b/kexi/kexidb/queryschemaparameter.h @@ -17,8 +17,8 @@ * Boston, MA 02110-1301, USA. */ -#ifndef KEXIDB_QUERYSCHEMAPARAMETER_H -#define KEXIDB_QUERYSCHEMAPARAMETER_H +#ifndef KEXIDB_TQUERYSCHEMAPARAMETER_H +#define KEXIDB_TQUERYSCHEMAPARAMETER_H #include "queryschema.h" @@ -32,33 +32,33 @@ class KEXI_DB_EXPORT QuerySchemaParameter QuerySchemaParameter(); ~QuerySchemaParameter(); - QString debugString() const; + TQString debugString() const; Field::Type type; //!< A datatype of the parameter - QString message; //!< A user-visible message that will be displayed to ask for value of the parameter + TQString message; //!< A user-visible message that will be displayed to ask for value of the parameter }; -typedef QValueList<QuerySchemaParameter> QuerySchemaParameterList; -typedef QValueList<QuerySchemaParameter>::Iterator QuerySchemaParameterListIterator; -typedef QValueList<QuerySchemaParameter>::ConstIterator QuerySchemaParameterListConstIterator; +typedef TQValueList<QuerySchemaParameter> QuerySchemaParameterList; +typedef TQValueList<QuerySchemaParameter>::Iterator QuerySchemaParameterListIterator; +typedef TQValueList<QuerySchemaParameter>::ConstIterator QuerySchemaParameterListConstIterator; //! Shows debug information for \a list KEXI_DB_EXPORT void debug(const QuerySchemaParameterList& list); //! @short An iteratof for a list of values of query schema parameters providing -//! Allows to iterate over parameters and return QVariant value or well-formatted string. +//! Allows to iterate over parameters and return TQVariant value or well-formatted string. //! The iterator is initially set to the last item because of the parser requirements class KEXI_DB_EXPORT QuerySchemaParameterValueListIterator { public: - QuerySchemaParameterValueListIterator(const Driver& driver, const QValueList<QVariant>& params); + QuerySchemaParameterValueListIterator(const Driver& driver, const TQValueList<TQVariant>& params); ~QuerySchemaParameterValueListIterator(); //! \return previous value - QVariant getPreviousValue(); + TQVariant getPreviousValue(); //! \return previous value as string formatted using driver's escaping - QString getPreviousValueAsString(Field::Type type); + TQString getPreviousValueAsString(Field::Type type); protected: class Private; Private * const d; |
