aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
* Replaced Nokia copyrights and contact detailsTeemu Kaukoranta2013-05-284-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced Nokia copyrights with correct Digia copyrights. Text in front of copyright is now retained: ** File is part of Foo, Copyright Nokia... -> ** File is part of Foo, Copyright Digia... Replaced Nokia contact details with Digia's. Removing "All Rights Reserved" no longer leaves an empty line. Used the following command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*|.*Contact.*' {} \; | tee >(xargs sed -i -r '1,50 { /INdT|copy[a-z]*[ ]*=/ !{ s/(^[ \t:#*]*)([a-z ]*) (Copyright.*Nokia.*)/ \1\2Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I }}') >(xargs sed -i -r '1,50 s/(^[ \t:#*]*)(.*info@qt\.nokia\.com.* |.*INSERT EMAIL ADDRESS.*|.*qt-info@nokia\.com.* |.*qt-label1@nokia\.com.*|.*http:\/\/qt\.nokia\.com\/contact.* |.*qt-sales@nokia\.com.*|.*http:\/\/www\.qt-project\.org\/.*)/ \1Contact: http:\/\/www\.qt-project\.org\/legal/I') >(xargs sed -i -r '1,50{/(^[ \t:#*]*)(all rights reserved.*)/Id}') Command now finds command details that point to qt-project.org and changes them to qt-project.org/legal Also no longer wrongly replaces code snippet "copyright = ..". Need to fix these case-by-case later. Change-Id: I4456c00202c4a2264a400bdc18c19cd097876861 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Updated the custom widget plugin to use the new converters.Marcelo Lira2012-03-082-6/+6
|
* Initia QtCore port to python3.Renato Filho2012-03-081-1/+1
|
* Be compatible with Qt4.5, i.e. no QScopedPointer.Hugo Parente Lima2012-03-084-2/+4
|
* Fixed QtUiTools plugin.Renato Araujo Oliveira Filho2012-03-082-6/+3
| | | | | | | | | Removed use of static QString to store the class name. Fix bug #533. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Adapt to API changes in libshiboken.Hugo Parente Lima2010-11-231-3/+3
|
* Updated to new shiboken API.Renato Araujo Oliveira Filho2010-11-191-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Changes needed to compile QtCore with libshiboken v1.0Hugo Parente Lima2010-11-101-6/+6
|
* Fix bug#438 - "Can't find Python.h on OS X"Hugo Parente Lima2010-10-281-2/+2
|
* Fixed plugin compilation problems on MacOS.renatofilho2010-10-261-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Removed QtDesigner dependency from QtUiTools module.renatofilho2010-10-151-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed reference leak on uiloader.renatofilho2010-10-131-4/+7
| | | | | | | Fixes bug #392 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed python include var used in plugins project.renatofilho2010-10-071-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Reorder includes to avoid _POSIX_C_SOURCE warningsLauro Neto2010-10-073-3/+3
|
* Created uiloader plugin used to register new types before QUiLoader.renatofilho2010-10-075-0/+335
This is used to register a new python type which can be used in ui description files. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>