##// END OF EJS Templates
added new tests for new PythonQt features...
added new tests for new PythonQt features git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@73 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r37:5bd99c632a3f
Show More
PythonQtWrapper_QSqlError.cpp
66 lines | 1.8 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); }
int PythonQtWrapper_QSqlError::number(QSqlError* theWrappedObject) const
{
return theWrappedObject->number();
}
void PythonQtWrapper_QSqlError::setDriverText(QSqlError* theWrappedObject, const QString& driverText)
{
theWrappedObject->setDriverText(driverText);
}
QString PythonQtWrapper_QSqlError::text(QSqlError* theWrappedObject) const
{
return theWrappedObject->text();
}
bool PythonQtWrapper_QSqlError::isValid(QSqlError* theWrappedObject) const
{
return theWrappedObject->isValid();
}
void PythonQtWrapper_QSqlError::setDatabaseText(QSqlError* theWrappedObject, const QString& databaseText)
{
theWrappedObject->setDatabaseText(databaseText);
}
QSqlError::ErrorType PythonQtWrapper_QSqlError::type(QSqlError* theWrappedObject) const
{
return theWrappedObject->type();
}
void PythonQtWrapper_QSqlError::setType(QSqlError* theWrappedObject, QSqlError::ErrorType type)
{
theWrappedObject->setType(type);
}
QString PythonQtWrapper_QSqlError::databaseText(QSqlError* theWrappedObject) const
{
return theWrappedObject->databaseText();
}
void PythonQtWrapper_QSqlError::setNumber(QSqlError* theWrappedObject, int number)
{
theWrappedObject->setNumber(number);
}
QString PythonQtWrapper_QSqlError::driverText(QSqlError* theWrappedObject) const
{
return theWrappedObject->driverText();
}