Skip to content

Commit adf2040

Browse files
author
florianlink
committed
regenerated wrappers for Qt 4.8 including ownership handling
git-svn-id: http://svn.code.sf.net/p/pythonqt/code/trunk@384 ea8d5007-eb21-0410-b261-ccb3ea6e24a9
1 parent 5eceded commit adf2040

File tree

64 files changed

+90992
-73067
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+90992
-73067
lines changed

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core0.cpp

+2,888-1,353
Large diffs are not rendered by default.

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core0.h

+269-73
Large diffs are not rendered by default.

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core1.cpp

+1,018-655
Large diffs are not rendered by default.

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core1.h

+101-73
Large diffs are not rendered by default.

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core2.cpp

+511-306
Large diffs are not rendered by default.

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core2.h

+66-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <qdatastream.h>
99
#include <qeasingcurve.h>
1010
#include <qfile.h>
11+
#include <qglobal.h>
1112
#include <qiodevice.h>
1213
#include <qlist.h>
1314
#include <qlocale.h>
@@ -16,6 +17,7 @@
1617
#include <qpair.h>
1718
#include <qreadwritelock.h>
1819
#include <qrunnable.h>
20+
#include <qstringmatcher.h>
1921
#include <qsystemsemaphore.h>
2022
#include <qtconcurrentexception.h>
2123
#include <qtconcurrentreducekernel.h>
@@ -36,6 +38,51 @@
3638

3739

3840

41+
class PythonQtWrapper_QStringMatcher : public QObject
42+
{ Q_OBJECT
43+
public:
44+
public slots:
45+
QStringMatcher* new_QStringMatcher();
46+
QStringMatcher* new_QStringMatcher(const QString& pattern, Qt::CaseSensitivity cs = Qt::CaseSensitive);
47+
QStringMatcher* new_QStringMatcher(const QStringMatcher& other);
48+
void delete_QStringMatcher(QStringMatcher* obj) { delete obj; }
49+
Qt::CaseSensitivity caseSensitivity(QStringMatcher* theWrappedObject) const;
50+
int indexIn(QStringMatcher* theWrappedObject, const QString& str, int from = 0) const;
51+
QString pattern(QStringMatcher* theWrappedObject) const;
52+
void setCaseSensitivity(QStringMatcher* theWrappedObject, Qt::CaseSensitivity cs);
53+
void setPattern(QStringMatcher* theWrappedObject, const QString& pattern);
54+
};
55+
56+
57+
58+
59+
60+
class PythonQtShell_QSysInfo : public QSysInfo
61+
{
62+
public:
63+
PythonQtShell_QSysInfo():QSysInfo(),_wrapper(NULL) {};
64+
65+
~PythonQtShell_QSysInfo();
66+
67+
68+
PythonQtInstanceWrapper* _wrapper;
69+
};
70+
71+
class PythonQtWrapper_QSysInfo : public QObject
72+
{ Q_OBJECT
73+
public:
74+
Q_ENUMS(Sizes )
75+
enum Sizes{
76+
WordSize = QSysInfo::WordSize};
77+
public slots:
78+
QSysInfo* new_QSysInfo();
79+
void delete_QSysInfo(QSysInfo* obj) { delete obj; }
80+
};
81+
82+
83+
84+
85+
3986
class PythonQtWrapper_QSystemSemaphore : public QObject
4087
{ Q_OBJECT
4188
public:
@@ -177,6 +224,10 @@ virtual QByteArray name() const;
177224
class PythonQtPublicPromoter_QTextCodec : public QTextCodec
178225
{ public:
179226
inline QList<QByteArray > promoted_aliases() const { return QTextCodec::aliases(); }
227+
inline QByteArray promoted_convertFromUnicode(const QChar* in, int length, QTextCodec::ConverterState* state) const { return this->convertFromUnicode(in, length, state); }
228+
inline QString promoted_convertToUnicode(const char* in, int length, QTextCodec::ConverterState* state) const { return this->convertToUnicode(in, length, state); }
229+
inline int promoted_mibEnum() const { return this->mibEnum(); }
230+
inline QByteArray promoted_name() const { return this->name(); }
180231
};
181232

182233
class PythonQtWrapper_QTextCodec : public QObject
@@ -188,6 +239,7 @@ enum ConversionFlag{
188239
DefaultConversion = QTextCodec::DefaultConversion, ConvertInvalidToNull = QTextCodec::ConvertInvalidToNull, IgnoreHeader = QTextCodec::IgnoreHeader, FreeFunction = QTextCodec::FreeFunction};
189240
Q_DECLARE_FLAGS(ConversionFlags, ConversionFlag)
190241
public slots:
242+
QTextCodec* new_QTextCodec();
191243
QList<QByteArray > aliases(QTextCodec* theWrappedObject) const;
192244
QList<QByteArray > static_QTextCodec_availableCodecs();
193245
QList<int > static_QTextCodec_availableMibs();
@@ -202,11 +254,15 @@ public slots:
202254
QTextCodec* static_QTextCodec_codecForName(const char* name);
203255
QTextCodec* static_QTextCodec_codecForUtfText(const QByteArray& ba);
204256
QTextCodec* static_QTextCodec_codecForUtfText(const QByteArray& ba, QTextCodec* defaultCodec);
257+
QByteArray convertFromUnicode(QTextCodec* theWrappedObject, const QChar* in, int length, QTextCodec::ConverterState* state) const;
258+
QString convertToUnicode(QTextCodec* theWrappedObject, const char* in, int length, QTextCodec::ConverterState* state) const;
205259
QByteArray fromUnicode(QTextCodec* theWrappedObject, const QString& uc) const;
206260
QTextDecoder* makeDecoder(QTextCodec* theWrappedObject) const;
207261
QTextDecoder* makeDecoder(QTextCodec* theWrappedObject, QTextCodec::ConversionFlags flags) const;
208262
QTextEncoder* makeEncoder(QTextCodec* theWrappedObject) const;
209263
QTextEncoder* makeEncoder(QTextCodec* theWrappedObject, QTextCodec::ConversionFlags flags) const;
264+
int mibEnum(QTextCodec* theWrappedObject) const;
265+
QByteArray name(QTextCodec* theWrappedObject) const;
210266
void static_QTextCodec_setCodecForCStrings(QTextCodec* c);
211267
void static_QTextCodec_setCodecForLocale(QTextCodec* c);
212268
void static_QTextCodec_setCodecForTr(QTextCodec* c);
@@ -263,14 +319,14 @@ class PythonQtShell_QTextStream : public QTextStream
263319
class PythonQtWrapper_QTextStream : public QObject
264320
{ Q_OBJECT
265321
public:
266-
Q_ENUMS(RealNumberNotation NumberFlag FieldAlignment Status )
322+
Q_ENUMS(FieldAlignment NumberFlag RealNumberNotation Status )
267323
Q_FLAGS(NumberFlags )
268-
enum RealNumberNotation{
269-
SmartNotation = QTextStream::SmartNotation, FixedNotation = QTextStream::FixedNotation, ScientificNotation = QTextStream::ScientificNotation};
270-
enum NumberFlag{
271-
ShowBase = QTextStream::ShowBase, ForcePoint = QTextStream::ForcePoint, ForceSign = QTextStream::ForceSign, UppercaseBase = QTextStream::UppercaseBase, UppercaseDigits = QTextStream::UppercaseDigits};
272324
enum FieldAlignment{
273325
AlignLeft = QTextStream::AlignLeft, AlignRight = QTextStream::AlignRight, AlignCenter = QTextStream::AlignCenter, AlignAccountingStyle = QTextStream::AlignAccountingStyle};
326+
enum NumberFlag{
327+
ShowBase = QTextStream::ShowBase, ForcePoint = QTextStream::ForcePoint, ForceSign = QTextStream::ForceSign, UppercaseBase = QTextStream::UppercaseBase, UppercaseDigits = QTextStream::UppercaseDigits};
328+
enum RealNumberNotation{
329+
SmartNotation = QTextStream::SmartNotation, FixedNotation = QTextStream::FixedNotation, ScientificNotation = QTextStream::ScientificNotation};
274330
enum Status{
275331
Ok = QTextStream::Ok, ReadPastEnd = QTextStream::ReadPastEnd, ReadCorruptData = QTextStream::ReadCorruptData, WriteFailed = QTextStream::WriteFailed};
276332
Q_DECLARE_FLAGS(NumberFlags, NumberFlag)
@@ -401,11 +457,11 @@ inline qreal promoted_valueForTime(int msec) const { return QTimeLine::valueFo
401457
class PythonQtWrapper_QTimeLine : public QObject
402458
{ Q_OBJECT
403459
public:
404-
Q_ENUMS(Direction CurveShape State )
405-
enum Direction{
406-
Forward = QTimeLine::Forward, Backward = QTimeLine::Backward};
460+
Q_ENUMS(CurveShape Direction State )
407461
enum CurveShape{
408462
EaseInCurve = QTimeLine::EaseInCurve, EaseOutCurve = QTimeLine::EaseOutCurve, EaseInOutCurve = QTimeLine::EaseInOutCurve, LinearCurve = QTimeLine::LinearCurve, SineCurve = QTimeLine::SineCurve, CosineCurve = QTimeLine::CosineCurve};
463+
enum Direction{
464+
Forward = QTimeLine::Forward, Backward = QTimeLine::Backward};
409465
enum State{
410466
NotRunning = QTimeLine::NotRunning, Paused = QTimeLine::Paused, Running = QTimeLine::Running};
411467
public slots:
@@ -635,6 +691,7 @@ inline int promoted_duration() const { return QVariantAnimation::duration(); }
635691
inline bool promoted_event(QEvent* event) { return QVariantAnimation::event(event); }
636692
inline QVariant promoted_interpolated(const QVariant& from, const QVariant& to, qreal progress) const { return QVariantAnimation::interpolated(from, to, progress); }
637693
inline void promoted_updateCurrentTime(int arg__1) { QVariantAnimation::updateCurrentTime(arg__1); }
694+
inline void promoted_updateCurrentValue(const QVariant& value) { this->updateCurrentValue(value); }
638695
inline void promoted_updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) { QVariantAnimation::updateState(newState, oldState); }
639696
};
640697

@@ -660,6 +717,7 @@ void delete_QVariantAnimation(QVariantAnimation* obj) { delete obj; }
660717
void setStartValue(QVariantAnimation* theWrappedObject, const QVariant& value);
661718
QVariant startValue(QVariantAnimation* theWrappedObject) const;
662719
void updateCurrentTime(QVariantAnimation* theWrappedObject, int arg__1);
720+
void updateCurrentValue(QVariantAnimation* theWrappedObject, const QVariant& value);
663721
void updateState(QVariantAnimation* theWrappedObject, QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
664722
};
665723

generated_cpp_48/com_trolltech_qt_core/com_trolltech_qt_core_init.cpp

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <PythonQt.h>
2+
#include <PythonQtConversion.h>
23
#include "com_trolltech_qt_core0.h"
34
#include "com_trolltech_qt_core1.h"
45
#include "com_trolltech_qt_core2.h"
@@ -20,11 +21,11 @@ static void* polymorphichandler_QEvent(const void *ptr, const char **class_name)
2021
return (QEvent*)object;
2122
}
2223
if (object->type() == QEvent::StateMachineSignal) {
23-
*class_name = "QStateMachine_SignalEvent";
24+
*class_name = "QStateMachine__SignalEvent";
2425
return (QStateMachine::SignalEvent*)object;
2526
}
2627
if (object->type() == QEvent::StateMachineWrapped) {
27-
*class_name = "QStateMachine_WrappedEvent";
28+
*class_name = "QStateMachine__WrappedEvent";
2829
return (QStateMachine::WrappedEvent*)object;
2930
}
3031
if (object->type() == QEvent::Timer) {
@@ -34,6 +35,7 @@ static void* polymorphichandler_QEvent(const void *ptr, const char **class_name)
3435
return NULL;
3536
}
3637

38+
3739
void PythonQt_init_QtCore(PyObject* module) {
3840
PythonQt::priv()->registerClass(&QAbstractAnimation::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QAbstractAnimation>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QAbstractAnimation>, module, 0);
3941
PythonQt::priv()->registerClass(&QAbstractItemModel::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QAbstractItemModel>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QAbstractItemModel>, module, 0);
@@ -45,7 +47,7 @@ PythonQt::priv()->registerCPPClass("QBasicTimer", "", "QtCore", PythonQtCreateOb
4547
PythonQt::priv()->registerClass(&QBuffer::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QBuffer>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QBuffer>, module, 0);
4648
PythonQt::priv()->registerCPPClass("QByteArrayMatcher", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QByteArrayMatcher>, NULL, module, 0);
4749
PythonQt::priv()->registerCPPClass("QChildEvent", "QEvent", "QtCore", PythonQtCreateObject<PythonQtWrapper_QChildEvent>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QChildEvent>, module, 0);
48-
PythonQt::priv()->registerClass(&QCoreApplication::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QCoreApplication>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QCoreApplication>, module, 0);
50+
PythonQt::priv()->registerClass(&QCoreApplication::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QCoreApplication>, NULL, module, 0);
4951
PythonQt::priv()->registerCPPClass("QCryptographicHash", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QCryptographicHash>, NULL, module, 0);
5052
PythonQt::priv()->registerCPPClass("QDataStream", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QDataStream>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QDataStream>, module, 0);
5153
PythonQt::priv()->registerCPPClass("QDir", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QDir>, NULL, module, PythonQt::Type_RichCompare);
@@ -63,6 +65,7 @@ PythonQt::priv()->registerClass(&QFileSystemWatcher::staticMetaObject, "QtCore",
6365
PythonQt::priv()->registerClass(&QFinalState::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QFinalState>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QFinalState>, module, 0);
6466
PythonQt::priv()->registerClass(&QHistoryState::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QHistoryState>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QHistoryState>, module, 0);
6567
PythonQt::priv()->registerClass(&QIODevice::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QIODevice>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QIODevice>, module, 0);
68+
PythonQt::priv()->registerClass(&QIdentityProxyModel::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QIdentityProxyModel>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QIdentityProxyModel>, module, 0);
6669
PythonQt::priv()->registerClass(&QLibrary::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QLibrary>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QLibrary>, module, 0);
6770
PythonQt::priv()->registerCPPClass("QLibraryInfo", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QLibraryInfo>, NULL, module, 0);
6871
PythonQt::priv()->registerCPPClass("QMetaClassInfo", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QMetaClassInfo>, NULL, module, 0);
@@ -76,6 +79,7 @@ PythonQt::priv()->registerCPPClass("QMutex", "", "QtCore", PythonQtCreateObject<
7679
PythonQt::priv()->registerClass(&QObject::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QObject>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QObject>, module, 0);
7780
PythonQt::priv()->registerClass(&QParallelAnimationGroup::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QParallelAnimationGroup>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QParallelAnimationGroup>, module, 0);
7881
PythonQt::priv()->registerClass(&QPauseAnimation::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QPauseAnimation>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QPauseAnimation>, module, 0);
82+
PythonQt::priv()->registerCPPClass("QPersistentModelIndex", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QPersistentModelIndex>, NULL, module, PythonQt::Type_RichCompare);
7983
PythonQt::priv()->registerClass(&QProcess::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QProcess>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QProcess>, module, 0);
8084
PythonQt::priv()->registerCPPClass("QProcessEnvironment", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QProcessEnvironment>, NULL, module, PythonQt::Type_RichCompare);
8185
PythonQt::priv()->registerClass(&QPropertyAnimation::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QPropertyAnimation>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QPropertyAnimation>, module, 0);
@@ -91,8 +95,8 @@ PythonQt::priv()->registerClass(&QSignalTransition::staticMetaObject, "QtCore",
9195
PythonQt::priv()->registerClass(&QSocketNotifier::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QSocketNotifier>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSocketNotifier>, module, 0);
9296
PythonQt::priv()->registerClass(&QState::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QState>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QState>, module, 0);
9397
PythonQt::priv()->registerClass(&QStateMachine::staticMetaObject, "QtCore", PythonQtCreateObject<PythonQtWrapper_QStateMachine>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QStateMachine>, module, 0);
94-
PythonQt::priv()->registerCPPClass("QStateMachine::SignalEvent", "QEvent", "QtCore", PythonQtCreateObject<PythonQtWrapper_QStateMachine_SignalEvent>, NULL, module, 0);
95-
PythonQt::priv()->registerCPPClass("QStateMachine::WrappedEvent", "QEvent", "QtCore", PythonQtCreateObject<PythonQtWrapper_QStateMachine_WrappedEvent>, NULL, module, 0);
98+
PythonQt::priv()->registerCPPClass("QStateMachine::SignalEvent", "QEvent", "QtCore", PythonQtCreateObject<PythonQtWrapper_QStateMachine__SignalEvent>, NULL, module, 0);
99+
PythonQt::priv()->registerCPPClass("QStateMachine::WrappedEvent", "QEvent", "QtCore", PythonQtCreateObject<PythonQtWrapper_QStateMachine__WrappedEvent>, NULL, module, 0);
96100
PythonQt::priv()->registerCPPClass("QStringMatcher", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QStringMatcher>, NULL, module, 0);
97101
PythonQt::priv()->registerCPPClass("QSysInfo", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QSysInfo>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSysInfo>, module, 0);
98102
PythonQt::priv()->registerCPPClass("QSystemSemaphore", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QSystemSemaphore>, NULL, module, 0);
@@ -114,4 +118,7 @@ PythonQt::priv()->registerCPPClass("QXmlStreamEntityResolver", "", "QtCore", Pyt
114118
PythonQt::priv()->registerCPPClass("QtConcurrent", "", "QtCore", PythonQtCreateObject<PythonQtWrapper_QtConcurrent>, NULL, module, 0);
115119

116120
PythonQt::self()->addPolymorphicHandler("QEvent", polymorphichandler_QEvent);
121+
122+
PythonQtRegisterListTemplateConverterForKnownClass(QList, QFileInfo);
123+
PythonQtRegisterListTemplateConverterForKnownClass(QList, QModelIndex);
117124
}

generated_cpp_48/com_trolltech_qt_core_builtin/com_trolltech_qt_core_builtin0.cpp

-36
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#include <PythonQtMethodInfo.h>
44
#include <PythonQtSignalReceiver.h>
55
#include <QDate>
6-
#include <QNoImplicitBoolCast>
76
#include <QStringList>
87
#include <QTextDocument>
98
#include <QVariant>
@@ -392,11 +391,6 @@ QByteArray PythonQtWrapper_QByteArray::static_QByteArray_number(qlonglong arg_
392391
return (QByteArray::number(arg__1, base));
393392
}
394393

395-
QByteArray PythonQtWrapper_QByteArray::static_QByteArray_number(qulonglong arg__1, int base)
396-
{
397-
return (QByteArray::number(arg__1, base));
398-
}
399-
400394
const QByteArray PythonQtWrapper_QByteArray::__add__(QByteArray* theWrappedObject, char a2)
401395
{
402396
return ( (*theWrappedObject)+ a2);
@@ -602,21 +596,11 @@ QByteArray* PythonQtWrapper_QByteArray::setNum(QByteArray* theWrappedObject, ql
602596
return &( theWrappedObject->setNum(arg__1, base));
603597
}
604598

605-
QByteArray* PythonQtWrapper_QByteArray::setNum(QByteArray* theWrappedObject, qulonglong arg__1, int base)
606-
{
607-
return &( theWrappedObject->setNum(arg__1, base));
608-
}
609-
610599
QByteArray* PythonQtWrapper_QByteArray::setNum(QByteArray* theWrappedObject, short arg__1, int base)
611600
{
612601
return &( theWrappedObject->setNum(arg__1, base));
613602
}
614603

615-
QByteArray* PythonQtWrapper_QByteArray::setNum(QByteArray* theWrappedObject, ushort arg__1, int base)
616-
{
617-
return &( theWrappedObject->setNum(arg__1, base));
618-
}
619-
620604
QByteArray* PythonQtWrapper_QByteArray::setRawData(QByteArray* theWrappedObject, const char* a, uint n)
621605
{
622606
return &( theWrappedObject->setRawData(a, n));
@@ -1875,21 +1859,11 @@ QString PythonQtWrapper_QLocale::toString(QLocale* theWrappedObject, qlonglong
18751859
return ( theWrappedObject->toString(i));
18761860
}
18771861

1878-
QString PythonQtWrapper_QLocale::toString(QLocale* theWrappedObject, qulonglong i) const
1879-
{
1880-
return ( theWrappedObject->toString(i));
1881-
}
1882-
18831862
QString PythonQtWrapper_QLocale::toString(QLocale* theWrappedObject, short i) const
18841863
{
18851864
return ( theWrappedObject->toString(i));
18861865
}
18871866

1888-
QString PythonQtWrapper_QLocale::toString(QLocale* theWrappedObject, ushort i) const
1889-
{
1890-
return ( theWrappedObject->toString(i));
1891-
}
1892-
18931867
QTime PythonQtWrapper_QLocale::toTime(QLocale* theWrappedObject, const QString& string, QLocale::FormatType arg__2) const
18941868
{
18951869
return ( theWrappedObject->toTime(string, arg__2));
@@ -2600,16 +2574,6 @@ bool PythonQtWrapper_QRectF::contains(QRectF* theWrappedObject, qreal x, qreal
26002574
return ( theWrappedObject->contains(x, y));
26012575
}
26022576

2603-
void PythonQtWrapper_QRectF::getCoords(QRectF* theWrappedObject, qreal* x1, qreal* y1, qreal* x2, qreal* y2) const
2604-
{
2605-
( theWrappedObject->getCoords(x1, y1, x2, y2));
2606-
}
2607-
2608-
void PythonQtWrapper_QRectF::getRect(QRectF* theWrappedObject, qreal* x, qreal* y, qreal* w, qreal* h) const
2609-
{
2610-
( theWrappedObject->getRect(x, y, w, h));
2611-
}
2612-
26132577
qreal PythonQtWrapper_QRectF::height(QRectF* theWrappedObject) const
26142578
{
26152579
return ( theWrappedObject->height());

0 commit comments

Comments
 (0)