Skip to content

Commit

Permalink
qt: rebuild (operator== and qt6.8 changes)
Browse files Browse the repository at this point in the history
  • Loading branch information
mappu committed Nov 22, 2024
1 parent 6e0c417 commit 3ec795d
Show file tree
Hide file tree
Showing 154 changed files with 617 additions and 635 deletions.
10 changes: 5 additions & 5 deletions qt-extras/scintillaedit/gen_ScintillaEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ Scintilla__Internal__Point* Scintilla__Internal__Point_FromInts(int x_, int y_)
}

bool Scintilla__Internal__Point_OperatorEqual(const Scintilla__Internal__Point* self, Scintilla__Internal__Point* other) {
return self->operator==(*other);
return (*self == *other);
}

bool Scintilla__Internal__Point_OperatorNotEqual(const Scintilla__Internal__Point* self, Scintilla__Internal__Point* other) {
return self->operator!=(*other);
return (*self != *other);
}

Scintilla__Internal__Point* Scintilla__Internal__Point_OperatorPlus(const Scintilla__Internal__Point* self, Scintilla__Internal__Point* other) {
Expand All @@ -112,7 +112,7 @@ void Scintilla__Internal__Point_Delete(Scintilla__Internal__Point* self, bool is
}

bool Scintilla__Internal__Interval_OperatorEqual(const Scintilla__Internal__Interval* self, Scintilla__Internal__Interval* other) {
return self->operator==(*other);
return (*self == *other);
}

double Scintilla__Internal__Interval_Width(const Scintilla__Internal__Interval* self) {
Expand Down Expand Up @@ -175,7 +175,7 @@ Scintilla__Internal__PRectangle* Scintilla__Internal__PRectangle_FromInts(int le
}

bool Scintilla__Internal__PRectangle_OperatorEqual(const Scintilla__Internal__PRectangle* self, Scintilla__Internal__PRectangle* rc) {
return self->operator==(*rc);
return (*self == *rc);
}

bool Scintilla__Internal__PRectangle_Contains(const Scintilla__Internal__PRectangle* self, Scintilla__Internal__Point* pt) {
Expand Down Expand Up @@ -331,7 +331,7 @@ float Scintilla__Internal__ColourRGBA_GetAlphaComponent(const Scintilla__Interna
}

bool Scintilla__Internal__ColourRGBA_OperatorEqual(const Scintilla__Internal__ColourRGBA* self, Scintilla__Internal__ColourRGBA* other) {
return self->operator==(*other);
return (*self == *other);
}

bool Scintilla__Internal__ColourRGBA_IsOpaque(const Scintilla__Internal__ColourRGBA* self) {
Expand Down
54 changes: 27 additions & 27 deletions qt/cbor/gen_qcborarray.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ int QCborArray_Compare(const QCborArray* self, QCborArray* other) {
}

bool QCborArray_OperatorEqual(const QCborArray* self, QCborArray* other) {
return self->operator==(*other);
return (*self == *other);
}

bool QCborArray_OperatorNotEqual(const QCborArray* self, QCborArray* other) {
return self->operator!=(*other);
return (*self != *other);
}

bool QCborArray_OperatorLesser(const QCborArray* self, QCborArray* other) {
return self->operator<(*other);
return (*self < *other);
}

QCborArray__Iterator* QCborArray_Begin(QCborArray* self) {
Expand Down Expand Up @@ -277,51 +277,51 @@ QCborValueRef* QCborArray__Iterator_OperatorSubscript(QCborArray__Iterator* self
}

bool QCborArray__Iterator_OperatorEqual(const QCborArray__Iterator* self, QCborArray__Iterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborArray__Iterator_OperatorNotEqual(const QCborArray__Iterator* self, QCborArray__Iterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborArray__Iterator_OperatorLesser(const QCborArray__Iterator* self, QCborArray__Iterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborArray__Iterator_OperatorLesserOrEqual(const QCborArray__Iterator* self, QCborArray__Iterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborArray__Iterator_OperatorGreater(const QCborArray__Iterator* self, QCborArray__Iterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborArray__Iterator_OperatorGreaterOrEqual(const QCborArray__Iterator* self, QCborArray__Iterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

bool QCborArray__Iterator_OperatorEqualWithQCborArrayConstIterator(const QCborArray__Iterator* self, QCborArray__ConstIterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborArray__Iterator_OperatorNotEqualWithQCborArrayConstIterator(const QCborArray__Iterator* self, QCborArray__ConstIterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborArray__Iterator_OperatorLesserWithOther(const QCborArray__Iterator* self, QCborArray__ConstIterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborArray__Iterator_OperatorLesserOrEqualWithOther(const QCborArray__Iterator* self, QCborArray__ConstIterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborArray__Iterator_OperatorGreaterWithOther(const QCborArray__Iterator* self, QCborArray__ConstIterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborArray__Iterator_OperatorGreaterOrEqualWithOther(const QCborArray__Iterator* self, QCborArray__ConstIterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

QCborArray__Iterator* QCborArray__Iterator_OperatorPlusPlus(QCborArray__Iterator* self) {
Expand Down Expand Up @@ -404,51 +404,51 @@ QCborValueRef* QCborArray__ConstIterator_OperatorSubscript(QCborArray__ConstIter
}

bool QCborArray__ConstIterator_OperatorEqual(const QCborArray__ConstIterator* self, QCborArray__Iterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborArray__ConstIterator_OperatorNotEqual(const QCborArray__ConstIterator* self, QCborArray__Iterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborArray__ConstIterator_OperatorLesser(const QCborArray__ConstIterator* self, QCborArray__Iterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborArray__ConstIterator_OperatorLesserOrEqual(const QCborArray__ConstIterator* self, QCborArray__Iterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborArray__ConstIterator_OperatorGreater(const QCborArray__ConstIterator* self, QCborArray__Iterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborArray__ConstIterator_OperatorGreaterOrEqual(const QCborArray__ConstIterator* self, QCborArray__Iterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

bool QCborArray__ConstIterator_OperatorEqualWithQCborArrayConstIterator(const QCborArray__ConstIterator* self, QCborArray__ConstIterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborArray__ConstIterator_OperatorNotEqualWithQCborArrayConstIterator(const QCborArray__ConstIterator* self, QCborArray__ConstIterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborArray__ConstIterator_OperatorLesserWithOther(const QCborArray__ConstIterator* self, QCborArray__ConstIterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborArray__ConstIterator_OperatorLesserOrEqualWithOther(const QCborArray__ConstIterator* self, QCborArray__ConstIterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborArray__ConstIterator_OperatorGreaterWithOther(const QCborArray__ConstIterator* self, QCborArray__ConstIterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborArray__ConstIterator_OperatorGreaterOrEqualWithOther(const QCborArray__ConstIterator* self, QCborArray__ConstIterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

QCborArray__ConstIterator* QCborArray__ConstIterator_OperatorPlusPlus(QCborArray__ConstIterator* self) {
Expand Down
54 changes: 27 additions & 27 deletions qt/cbor/gen_qcbormap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ int QCborMap_Compare(const QCborMap* self, QCborMap* other) {
}

bool QCborMap_OperatorEqual(const QCborMap* self, QCborMap* other) {
return self->operator==(*other);
return (*self == *other);
}

bool QCborMap_OperatorNotEqual(const QCborMap* self, QCborMap* other) {
return self->operator!=(*other);
return (*self != *other);
}

bool QCborMap_OperatorLesser(const QCborMap* self, QCborMap* other) {
return self->operator<(*other);
return (*self < *other);
}

QCborMap__Iterator* QCborMap_Begin(QCborMap* self) {
Expand Down Expand Up @@ -399,51 +399,51 @@ QCborValueRef* QCborMap__Iterator_Value(const QCborMap__Iterator* self) {
}

bool QCborMap__Iterator_OperatorEqual(const QCborMap__Iterator* self, QCborMap__Iterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborMap__Iterator_OperatorNotEqual(const QCborMap__Iterator* self, QCborMap__Iterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborMap__Iterator_OperatorLesser(const QCborMap__Iterator* self, QCborMap__Iterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborMap__Iterator_OperatorLesserOrEqual(const QCborMap__Iterator* self, QCborMap__Iterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborMap__Iterator_OperatorGreater(const QCborMap__Iterator* self, QCborMap__Iterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborMap__Iterator_OperatorGreaterOrEqual(const QCborMap__Iterator* self, QCborMap__Iterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

bool QCborMap__Iterator_OperatorEqualWithQCborMapConstIterator(const QCborMap__Iterator* self, QCborMap__ConstIterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborMap__Iterator_OperatorNotEqualWithQCborMapConstIterator(const QCborMap__Iterator* self, QCborMap__ConstIterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborMap__Iterator_OperatorLesserWithOther(const QCborMap__Iterator* self, QCborMap__ConstIterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborMap__Iterator_OperatorLesserOrEqualWithOther(const QCborMap__Iterator* self, QCborMap__ConstIterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborMap__Iterator_OperatorGreaterWithOther(const QCborMap__Iterator* self, QCborMap__ConstIterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborMap__Iterator_OperatorGreaterOrEqualWithOther(const QCborMap__Iterator* self, QCborMap__ConstIterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

QCborMap__Iterator* QCborMap__Iterator_OperatorPlusPlus(QCborMap__Iterator* self) {
Expand Down Expand Up @@ -540,51 +540,51 @@ QCborValueRef* QCborMap__ConstIterator_Value(const QCborMap__ConstIterator* self
}

bool QCborMap__ConstIterator_OperatorEqual(const QCborMap__ConstIterator* self, QCborMap__Iterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborMap__ConstIterator_OperatorNotEqual(const QCborMap__ConstIterator* self, QCborMap__Iterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborMap__ConstIterator_OperatorLesser(const QCborMap__ConstIterator* self, QCborMap__Iterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborMap__ConstIterator_OperatorLesserOrEqual(const QCborMap__ConstIterator* self, QCborMap__Iterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborMap__ConstIterator_OperatorGreater(const QCborMap__ConstIterator* self, QCborMap__Iterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborMap__ConstIterator_OperatorGreaterOrEqual(const QCborMap__ConstIterator* self, QCborMap__Iterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

bool QCborMap__ConstIterator_OperatorEqualWithQCborMapConstIterator(const QCborMap__ConstIterator* self, QCborMap__ConstIterator* o) {
return self->operator==(*o);
return (*self == *o);
}

bool QCborMap__ConstIterator_OperatorNotEqualWithQCborMapConstIterator(const QCborMap__ConstIterator* self, QCborMap__ConstIterator* o) {
return self->operator!=(*o);
return (*self != *o);
}

bool QCborMap__ConstIterator_OperatorLesserWithOther(const QCborMap__ConstIterator* self, QCborMap__ConstIterator* other) {
return self->operator<(*other);
return (*self < *other);
}

bool QCborMap__ConstIterator_OperatorLesserOrEqualWithOther(const QCborMap__ConstIterator* self, QCborMap__ConstIterator* other) {
return self->operator<=(*other);
return (*self <= *other);
}

bool QCborMap__ConstIterator_OperatorGreaterWithOther(const QCborMap__ConstIterator* self, QCborMap__ConstIterator* other) {
return self->operator>(*other);
return (*self > *other);
}

bool QCborMap__ConstIterator_OperatorGreaterOrEqualWithOther(const QCborMap__ConstIterator* self, QCborMap__ConstIterator* other) {
return self->operator>=(*other);
return (*self >= *other);
}

QCborMap__ConstIterator* QCborMap__ConstIterator_OperatorPlusPlus(QCborMap__ConstIterator* self) {
Expand Down
12 changes: 6 additions & 6 deletions qt/cbor/gen_qcborvalue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,15 +345,15 @@ int QCborValue_Compare(const QCborValue* self, QCborValue* other) {
}

bool QCborValue_OperatorEqual(const QCborValue* self, QCborValue* other) {
return self->operator==(*other);
return (*self == *other);
}

bool QCborValue_OperatorNotEqual(const QCborValue* self, QCborValue* other) {
return self->operator!=(*other);
return (*self != *other);
}

bool QCborValue_OperatorLesser(const QCborValue* self, QCborValue* other) {
return self->operator<(*other);
return (*self < *other);
}

QCborValue* QCborValue_FromVariant(QVariant* variant) {
Expand Down Expand Up @@ -718,15 +718,15 @@ int QCborValueRef_Compare(const QCborValueRef* self, QCborValue* other) {
}

bool QCborValueRef_OperatorEqual(const QCborValueRef* self, QCborValue* other) {
return self->operator==(*other);
return (*self == *other);
}

bool QCborValueRef_OperatorNotEqual(const QCborValueRef* self, QCborValue* other) {
return self->operator!=(*other);
return (*self != *other);
}

bool QCborValueRef_OperatorLesser(const QCborValueRef* self, QCborValue* other) {
return self->operator<(*other);
return (*self < *other);
}

QVariant* QCborValueRef_ToVariant(const QCborValueRef* self) {
Expand Down
Loading

0 comments on commit 3ec795d

Please sign in to comment.