aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed segfault during the connection fail.Renato Filho2012-03-081-3/+3
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Create unit test for bug #998.Renato Filho2012-03-082-0/+11
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fixed problems in function that return None, and was not verified.Renato Filho2012-03-081-4/+6
| | | | | | | | | | Some functions with inject code didnot verify the result value before convert to Shiboken types. Fixes bug #998. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Changed QStringList from container to primitive type.Marcelo Lira2012-03-081-2/+2
| | | | | | | | QStringList inherits from QList<QString>, and it isn't a reusable container itself, such as QList. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 981 - "QSettings docs should empathize the behavior changes of ↵Hugo Parente Lima2012-03-081-0/+5
| | | | | | | | value() on different platforms" Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix QAbstractFileEngine read and readLine methods to accept data with null ↵Hugo Parente Lima2012-03-082-5/+4
| | | | | | | bytes. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix other QIODevice read functions stopping at null bytes.Hugo Parente Lima2012-03-082-1/+5
|
* Add extra test on QByteArray explicit conversionLauro Neto2012-03-081-0/+7
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 944 - "QIODevice.readData must use qmemcpy instead of qstrncpy"Hugo Parente Lima2012-03-083-1/+22
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 966 - "QX11Info.display() missing"Hugo Parente Lima2012-03-083-10/+28
|
* Created unit test for QColor reduce function.Renato Filho2012-03-082-0/+32
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QColor reduce function.Renato Filho2012-03-081-10/+11
| | | | | | | Fixes bug #989. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Unit test for bug 967, a side effect of bug 988.Hugo Parente Lima2012-03-082-0/+19
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Created test for bug #979.Renato Filho2012-03-083-0/+12
|
* Fix bug 988 - "The type supplied with currentChanged signal in QTabWidget ↵Hugo Parente Lima2012-03-083-1/+27
| | | | | | | has changed in 1.0.6" Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Optimize my dumb code that do stuff with a QByteArray without knowing if ↵Hugo Parente Lima2012-03-081-3/+4
| | | | will use it.
* Created unit test for repr function.Renato Filho2012-03-082-0/+16
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed gcc warning during QDate conversion compilation.Renato Filho2012-03-081-2/+6
|
* Created unit test for bug #987.Renato Filho2012-03-082-0/+16
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fail during the signal connection or disconnection raises exception.Renato Filho2012-03-081-4/+19
| | | | | | | Fixes bug #987. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed SignalManager bug during anonymous signal connection.Renato Filho2012-03-081-3/+5
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Added missing primitive types on QtCore type system.Hugo Parente Lima2012-03-081-0/+4
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix white space.Hugo Parente Lima2012-03-081-1/+1
|
* Created unit test for bug #973.Renato Filho2012-03-082-0/+29
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Removed debug messages from the test.Renato Filho2012-03-081-6/+0
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented inject code for function QWebPage.qt_metacall.Renato Filho2012-03-082-1/+21
| | | | | | | | | | | | This inject code is necessary due a workaround on C++ class QWebPage. Check de C++ doc for more information: http://doc.qt.nokia.com/4.7-snapshot/qwebpage.html#shouldInterruptJavaScript Fixes bug #973. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Created utility function to call a python method usign args received inRenato Filho2012-03-083-126/+136
| | | | | | | qt_metacall. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix complation warning relative to PyDateTime_IMPORT.Renato Filho2012-03-081-2/+5
|
* Created unit test for QMenu, QMenuBar, QToolBar clear function.Renato Filho2012-03-082-0/+47
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed QMenu, QMenuBar, QToolBar clear function.Renato Filho2012-03-081-0/+42
| | | | | | | During the clear function all QActions need be destroyed. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixex return policy on QNetworkAccessManager.createRequest.Renato Filho2012-03-081-0/+3
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Register QVariantMap on TypeManager.Renato Filho2012-03-081-0/+2
| | | | | | | fixes bug #959. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Created unit test for bug #959.Renato Filho2012-03-082-0/+88
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implement support to pyside debug mode on documentation generator.Renato Filho2012-03-081-1/+6
| | | | | Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fixed build for Qt 4.6.Renato Filho2012-03-081-5/+5
|
* Dependency version update.ps-1.0.6Renato Filho2012-03-081-2/+2
|
* Created unit test for __reduce__ of empty QColor.Renato Filho2012-03-081-1/+12
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix QColor __reduce__ function.Renato Filho2012-03-081-2/+8
| | | | | | | Fixes bug #983. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Created unitest for bug #972.Renato Filho2012-03-082-0/+40
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix QGraphicsProxyWidget.setWidget return policy.Renato Filho2012-03-081-3/+7
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix QSettings code snippet.Hugo Parente Lima2012-03-081-2/+2
|
* Implemented GlobalReceiverV2.Renato Filho2012-03-089-27/+570
| | | | | | | | | | A new implementation of GlobalRecever that optmize the signal connection. Fixes bug #928. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Do not generate QTest::qt_snprintf function.Marcelo Lira2012-03-081-0/+1
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Fixed conversion rules for QWebPage.javaScriptPrompt method.Marcelo Lira2012-03-081-9/+16
|
* Updated QtNetwork's type system.Marcelo Lira2012-03-081-20/+18
|
* Updated QtDeclarative's type system.Marcelo Lira2012-03-081-1/+2
|
* Updated QtWebKit's type system.Marcelo Lira2012-03-081-23/+27
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Updated QtXmlPattern's type system.Marcelo Lira2012-03-081-1/+2
|
* Updated QtGui's type system.Marcelo Lira2012-03-081-67/+98
|
* Updated QtCore's type system.Marcelo Lira2012-03-082-67/+97
|