##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QSqlError.cpp
63 lines | 1.7 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QSqlError.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::databaseText(QSqlError* theWrappedObject) const
{
return theWrappedObject->databaseText();
}
QString PythonQtWrapper_QSqlError::driverText(QSqlError* theWrappedObject) const
{
return theWrappedObject->driverText();
}
bool PythonQtWrapper_QSqlError::isValid(QSqlError* theWrappedObject) const
{
return theWrappedObject->isValid();
}
int PythonQtWrapper_QSqlError::number(QSqlError* theWrappedObject) const
{
return theWrappedObject->number();
}
void PythonQtWrapper_QSqlError::setDatabaseText(QSqlError* theWrappedObject, const QString& databaseText)
{
theWrappedObject->setDatabaseText(databaseText);
}
void PythonQtWrapper_QSqlError::setDriverText(QSqlError* theWrappedObject, const QString& driverText)
{
theWrappedObject->setDriverText(driverText);
}
void PythonQtWrapper_QSqlError::setNumber(QSqlError* theWrappedObject, int number)
{
theWrappedObject->setNumber(number);
}
void PythonQtWrapper_QSqlError::setType(QSqlError* theWrappedObject, QSqlError::ErrorType type)
{
theWrappedObject->setType(type);
}
QString PythonQtWrapper_QSqlError::text(QSqlError* theWrappedObject) const
{
return theWrappedObject->text();
}
QSqlError::ErrorType PythonQtWrapper_QSqlError::type(QSqlError* theWrappedObject) const
{
return theWrappedObject->type();
}