aboutsummaryrefslogtreecommitdiffstats
path: root/doc/issuesdiff.rst
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2010-04-27 18:12:50 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-04-28 16:36:47 -0300
commitaaece960d3cf1c9d19dd84fe8171769517647724 (patch)
treeea2e20d2c8738cc407f60b10b6cccfb4e1fc2b70 /doc/issuesdiff.rst
parent685246809debe672a0007b67fe78f7c77bad6739 (diff)
Adding ./doc from boost
Reviewer: Lauro Moura <lauro.neto@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
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)
+