You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- fixed some memory leaks (only on cleanup)
- fixed bad QString usage as %s argument
- added PythonQtQFileImporter, which implements a default importer using QFile
- added PythonQt::self()->installDefaultImporter() to enable the new default importer
- modified example to make use of new importer
- removed ugly goto, which was copied from original zip import
git-svn-id: http://svn.code.sf.net/p/pythonqt/code/trunk@43 ea8d5007-eb21-0410-b261-ccb3ea6e24a9
Copy file name to clipboardExpand all lines: src/PythonQtDoc.h
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@
51
51
52
52
\section Introduction
53
53
54
-
\b PythonQt is a dynamic Python (http://www.python.org) binding for Qt (http://www.trolltech.com).
54
+
\b PythonQt is a dynamic Python (http://www.python.org) binding for Qt (http://www.qtsoftware.com).
55
55
It offers an easy way to embed the Python scripting language into
56
56
your Qt applications. It makes heavy use of the QMetaObject system and thus requires Qt4.x.
57
57
@@ -339,7 +339,7 @@ yourCpp = None
339
339
340
340
\section Building
341
341
342
-
PythonQt requires at least Qt 4.2.2 (or higher) and Python 2.3, 2.4or 2.5 on Windows, Linux and MacOS X.
342
+
PythonQt requires at least Qt 4.2.2 (or higher) and Python 2.3, 2.4, 2.5 or 2.6 on Windows, Linux and MacOS X. It has not yet been tested with Python 3.x, but it should only require minor changes.
343
343
To compile PythonQt, you will need a python developer installation which includes Python's header files and
344
344
the python2x.[lib | dll | so | dynlib].
345
345
The build scripts a currently set to use Python 2.5.
@@ -459,8 +459,4 @@ the python2x.[lib | dll | so | dynlib].
459
459
\endcode
460
460
461
461
462
-
\section TODOs
463
-
464
-
- add more information on how to distribute an application that uses PythonQt, including the Python distribution
0 commit comments