~ubuntu-branches/ubuntu/natty/pyside/natty-proposed

« back to all changes in this revision

Viewing changes to libpyside/signalmanager.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Didier Raboud
  • Date: 2011-04-01 15:21:05 UTC
  • mfrom: (1.2.4 upstream) (6.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110401152105-perr3fu2o9fja5rd
Tags: 1.0.1-1
* New 1.0.1 upstream release
  - Bump the B-D chain versions:
    + generatorrunner to 0.6.8.
    + shiboken to 1.0.1.
 
* Move phonon-backend-gstreamer B-D earlier in the list to help the
  aptitude-based resolver (thanks to the pkg-kde team for the help!)
* Use dh_python2, hence get the debug files at the correct place.

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
        QList<QByteArray> paramTypes = method.parameterTypes();
321
321
        PyObject* self = (PyObject*)Shiboken::BindingManager::instance().retrieveWrapper(object);
322
322
        PyObject* preparedArgs = NULL;
323
 
        Py_ssize_t args_size = paramTypes.count();
 
323
        Py_ssize_t argsSize = paramTypes.count();
324
324
 
325
 
        if (args_size)
326
 
            preparedArgs = PyTuple_New(args_size);
 
325
        if (argsSize)
 
326
            preparedArgs = PyTuple_New(argsSize);
327
327
 
328
328
        for (int i = 0, max = paramTypes.count(); i < max; ++i) {
329
329
            void* data = args[i+1];