##// END OF EJS Templates
fixed bad reference counting and borrowed references...
fixed bad reference counting and borrowed references git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@55 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r19:4f416979f8bf
Show More
PythonQtWrapper_QTextCodecPlugin.cpp
35 lines | 959 B | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_core / PythonQtWrapper_QTextCodecPlugin.cpp
#include "PythonQtWrapper_QTextCodecPlugin.h"
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qstringlist.h>
#include <qtextcodec.h>
QList<QByteArray > PythonQtWrapper_QTextCodecPlugin::aliases(QTextCodecPlugin* theWrappedObject) const
{
return theWrappedObject->aliases();
}
QTextCodec* PythonQtWrapper_QTextCodecPlugin::createForMib(QTextCodecPlugin* theWrappedObject, int mib)
{
return theWrappedObject->createForMib(mib);
}
QTextCodec* PythonQtWrapper_QTextCodecPlugin::createForName(QTextCodecPlugin* theWrappedObject, const QByteArray& name)
{
return theWrappedObject->createForName(name);
}
QList<int > PythonQtWrapper_QTextCodecPlugin::mibEnums(QTextCodecPlugin* theWrappedObject) const
{
return theWrappedObject->mibEnums();
}
QList<QByteArray > PythonQtWrapper_QTextCodecPlugin::names(QTextCodecPlugin* theWrappedObject) const
{
return theWrappedObject->names();
}