##// END OF EJS Templates
renamed guards...
renamed guards git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@53 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r17:4a5dbf143fd4
Show More
PythonQtWrapper_QSignalMapper.cpp
48 lines | 1.4 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QSignalMapper.h"
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qsignalmapper.h>
QSignalMapper* PythonQtWrapper_QSignalMapper::new_QSignalMapper(QObject* parent)
{
return new QSignalMapper(parent); }
QObject* PythonQtWrapper_QSignalMapper::mapping(QSignalMapper* theWrappedObject, QObject* object) const
{
return theWrappedObject->mapping(object);
}
QObject* PythonQtWrapper_QSignalMapper::mapping(QSignalMapper* theWrappedObject, const QString& text) const
{
return theWrappedObject->mapping(text);
}
QObject* PythonQtWrapper_QSignalMapper::mapping(QSignalMapper* theWrappedObject, int id) const
{
return theWrappedObject->mapping(id);
}
void PythonQtWrapper_QSignalMapper::removeMappings(QSignalMapper* theWrappedObject, QObject* sender)
{
theWrappedObject->removeMappings(sender);
}
void PythonQtWrapper_QSignalMapper::setMapping(QSignalMapper* theWrappedObject, QObject* sender, QObject* object)
{
theWrappedObject->setMapping(sender, object);
}
void PythonQtWrapper_QSignalMapper::setMapping(QSignalMapper* theWrappedObject, QObject* sender, const QString& text)
{
theWrappedObject->setMapping(sender, text);
}
void PythonQtWrapper_QSignalMapper::setMapping(QSignalMapper* theWrappedObject, QObject* sender, int id)
{
theWrappedObject->setMapping(sender, id);
}