##// END OF EJS Templates
allow to pass invalid QVariants as QVariant parameter of slots...
allow to pass invalid QVariants as QVariant parameter of slots git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@126 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r90:6da6bce07af7
Show More
PythonQtWrapper_QPaintEvent.cpp
27 lines | 749 B | text/x-c | CppLexer
#include "PythonQtWrapper_QPaintEvent.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qrect.h>
#include <qregion.h>
QPaintEvent* PythonQtWrapper_QPaintEvent::new_QPaintEvent(const QRect& paintRect)
{
return new PythonQtShell_QPaintEvent(paintRect); }
QPaintEvent* PythonQtWrapper_QPaintEvent::new_QPaintEvent(const QRegion& paintRegion)
{
return new PythonQtShell_QPaintEvent(paintRegion); }
const QRegion* PythonQtWrapper_QPaintEvent::region(QPaintEvent* theWrappedObject) const
{
return &( theWrappedObject->region());
}
const QRect* PythonQtWrapper_QPaintEvent::rect(QPaintEvent* theWrappedObject) const
{
return &( theWrappedObject->rect());
}