##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QSqlError.cpp
73 lines | 2.0 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QSqlError.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qsqlerror.h>
QSqlError* PythonQtWrapper_QSqlError::new_QSqlError(const QSqlError& other)
{
return new QSqlError(other); }
QSqlError* PythonQtWrapper_QSqlError::new_QSqlError(const QString& driverText, const QString& databaseText, QSqlError::ErrorType type, int number)
{
return new QSqlError(driverText, databaseText, type, number); }
QString PythonQtWrapper_QSqlError::text(QSqlError* theWrappedObject) const
{
return ( theWrappedObject->text());
}
QString PythonQtWrapper_QSqlError::databaseText(QSqlError* theWrappedObject) const
{
return ( theWrappedObject->databaseText());
}
int PythonQtWrapper_QSqlError::number(QSqlError* theWrappedObject) const
{
return ( theWrappedObject->number());
}
void PythonQtWrapper_QSqlError::setDriverText(QSqlError* theWrappedObject, const QString& driverText)
{
( theWrappedObject->setDriverText(driverText));
}
QSqlError::ErrorType PythonQtWrapper_QSqlError::type(QSqlError* theWrappedObject) const
{
return ( theWrappedObject->type());
}
bool PythonQtWrapper_QSqlError::isValid(QSqlError* theWrappedObject) const
{
return ( theWrappedObject->isValid());
}
void PythonQtWrapper_QSqlError::setType(QSqlError* theWrappedObject, QSqlError::ErrorType type)
{
( theWrappedObject->setType(type));
}
QString PythonQtWrapper_QSqlError::driverText(QSqlError* theWrappedObject) const
{
return ( theWrappedObject->driverText());
}
void PythonQtWrapper_QSqlError::setNumber(QSqlError* theWrappedObject, int number)
{
( theWrappedObject->setNumber(number));
}
void PythonQtWrapper_QSqlError::setDatabaseText(QSqlError* theWrappedObject, const QString& databaseText)
{
( theWrappedObject->setDatabaseText(databaseText));
}
QString PythonQtWrapper_QSqlError::toString(QSqlError* obj) {
QString result;
QDebug d(&result);
d << *obj;
return result;
}