aboutsummaryrefslogtreecommitdiffstats
path: root/doc/issuesdiff.rst
blob: 480ad6c8cf2caabd296bd1c1a911dd39e43a9bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
PySide issues and specificities
*******************************

This document shows some points not supported yet by Boost.python
and PySide.

Deprecated Methods
------------------

The deprecated methods before Qt 4.4 is not supported by PySide,
e.g.: `QColor.dark()` and `QColor.light()`.

**How to solve:** update the methods with new ones like `QColor.darker()`
and `QColor.lighter()`.

Class methods with static and normal methods with the same signature
--------------------------------------------------------------------

Boost.Python does not support static methods and member methods
with the same signature. The static versions is renamed to
*classMethodName*.

**Example:** QFile.permissions() and QFile.permissions(QString)

**How to solve:** for static methods use QFile.filePermissions(QString)