aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/globalreceiver.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix shadowed virtualsMatthew Woehlke2014-04-151-0/+4
| | | | | | | | | Change GlobalReceiver to explicitly 'use' [dis]connectNotify of the base class in order to avoid hiding these with its own overloads. This fixes the only (current) -Woverloaded-virtual warning. Change-Id: I364b9939f9078029861054051148c319071fbbe1 Reviewed-by: John Ehresman <jpe@wingware.com>
* Replaced Nokia copyrights and contact detailsTeemu Kaukoranta2013-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* Use sbkpython.h instead of Python.h to avoid problems with Python2.5.Hugo Parente Lima2012-03-081-1/+1
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Implemented GlobalReceiverV2.Renato Filho2012-03-081-0/+1
| | | | | | | | | | 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>
* Implemented DynamicMetaObject optiomizations.Renato Filho2012-03-081-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix project name on license boilerplates.Hugo Parente Lima2010-09-091-1/+1
|
* Change the license boiler plates of all LGPL files removing the special ↵Hugo Parente Lima2010-09-091-21/+9
| | | | exception.
* Fixed memory leak on callbacks used on signal connection.Renato Filho2010-02-231-2/+4
| | | | | Now using the 'destroyed()' signal the reference is cleaned after source object destroyed.
* Implement disconnect function for Python callback.renato2010-01-041-1/+5
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fixes problems calling dynamic python slots.Hugo Lima2010-01-041-0/+2
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Initial implementation of the new architeture for signal/slots.Hugo Lima2009-12-301-0/+62
Reviewed by Renato Araújo <renato.filho@openbossa.org>