aboutsummaryrefslogtreecommitdiffstats
path: root/doc/issuesdiff.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/issuesdiff.rst')
-rw-r--r--doc/issuesdiff.rst26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/issuesdiff.rst b/doc/issuesdiff.rst
new file mode 100644
index 000000000..480ad6c8c
--- /dev/null
+++ b/doc/issuesdiff.rst
@@ -0,0 +1,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)
+