aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch up removed bool* arguments for QLocalServer and QTcpServerHEADmasterBart Vanhauwaert2017-07-151-0/+6
|
* Build both debug and release of the bindingsBart Vanhauwaert2016-11-231-0/+1
|
* Correctly deal with removed bool* argumentsBart Vanhauwaert2016-11-232-7/+22
| | | | | | | When a bool* is removed, we need to insert the template to pass a dummy bool* instead of trying to convert it from one of the script parameter arguments Also, clean up some whitespace
* Remove QMetaFunctionHelper::Create wrapperBart Vanhauwaert2016-11-232-32/+0
| | | | | | | Mimick change in qtbase.git since the ::Create wrapper can be simulated with the more generic ::Construct one. See commit 3d575d4845926bd141ff0c14e57427bba79644d0 in qtbase.git for more discussion
* Exclude QList<QModelIndex> from Q_DECLARE_METATYPEBart Vanhauwaert2016-11-231-0/+4
| | | | | | | Special case QList<QModelIndex> to avoid Q_DECLARE_METATYPE it since it creates conflicts. Copied the WTF specifier for this code from the other special case for QStringList<QString>. May need to revisit this issue.
* Exclude QTextStream::operator<<(*) from generationBart Vanhauwaert2016-11-231-5/+35
| | | | | | QTextStream cannot be declared as with the metatype system due to a private copy constructor. Returning it in the generated code (as these operators do) therefore doesn't work.
* Exclude QList::op_eq_impl from generationBart Vanhauwaert2016-11-232-0/+2
| | | | | QList::op_eq_impl is an overloaded function with similar enough signatures to confuse the parser.
* Parse new Q_ENUM Qt macro introduced with Qt 5.5.Bart Vanhauwaert2016-11-234-2/+17
| | | | | We do the same thing as moc and just treat it as a Q_ENUMS(...) macro since Q_ENUM's syntactic use should be a strict subset of Q_ENUMS'
* Add QFileDevice for closing QFilesJason A. Donenfeld2015-04-033-0/+12
|
* Don't be dumb on windows.Jason A. Donenfeld2014-10-171-1/+1
|
* Initial import.Jason A. Donenfeld2014-09-25210-0/+58120