##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QDomCharacterData.cpp
57 lines | 1.8 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QDomCharacterData.cpp
#include "PythonQtWrapper_QDomCharacterData.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qdom.h>
#include <qtextstream.h>
QDomCharacterData* PythonQtWrapper_QDomCharacterData::new_QDomCharacterData()
{
return new QDomCharacterData(); }
QDomCharacterData* PythonQtWrapper_QDomCharacterData::new_QDomCharacterData(const QDomCharacterData& x)
{
return new QDomCharacterData(x); }
QString PythonQtWrapper_QDomCharacterData::substringData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
return ( theWrappedObject->substringData(offset, count));
}
void PythonQtWrapper_QDomCharacterData::replaceData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count, const QString& arg)
{
( theWrappedObject->replaceData(offset, count, arg));
}
QString PythonQtWrapper_QDomCharacterData::data(QDomCharacterData* theWrappedObject) const
{
return ( theWrappedObject->data());
}
void PythonQtWrapper_QDomCharacterData::deleteData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
( theWrappedObject->deleteData(offset, count));
}
void PythonQtWrapper_QDomCharacterData::setData(QDomCharacterData* theWrappedObject, const QString& arg__1)
{
( theWrappedObject->setData(arg__1));
}
void PythonQtWrapper_QDomCharacterData::appendData(QDomCharacterData* theWrappedObject, const QString& arg)
{
( theWrappedObject->appendData(arg));
}
uint PythonQtWrapper_QDomCharacterData::length(QDomCharacterData* theWrappedObject) const
{
return ( theWrappedObject->length());
}
void PythonQtWrapper_QDomCharacterData::insertData(QDomCharacterData* theWrappedObject, unsigned long offset, const QString& arg)
{
( theWrappedObject->insertData(offset, arg));
}