##// 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_QTranslator.cpp
33 lines | 1.0 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QTranslator.h"
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qtranslator.h>
QTranslator* PythonQtWrapper_QTranslator::new_QTranslator(QObject* parent)
{
return new QTranslator(parent); }
bool PythonQtWrapper_QTranslator::isEmpty(QTranslator* theWrappedObject) const
{
return theWrappedObject->isEmpty();
}
bool PythonQtWrapper_QTranslator::load(QTranslator* theWrappedObject, const QString& filename, const QString& directory, const QString& search_delimiters, const QString& suffix)
{
return theWrappedObject->load(filename, directory, search_delimiters, suffix);
}
bool PythonQtWrapper_QTranslator::load(QTranslator* theWrappedObject, const uchar* data, int len)
{
return theWrappedObject->load(data, len);
}
QString PythonQtWrapper_QTranslator::translate(QTranslator* theWrappedObject, const char* context, const char* sourceText, const char* comment) const
{
return theWrappedObject->translate(context, sourceText, comment);
}