diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-12-18 22:57:38 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-12-18 22:57:38 +0000 |
commit | 424b7ebcd4002396053b7c1d1194ac3c52a6464c (patch) | |
tree | c5046b2057683e60530e26fd72935a4163b7670b /sci-visualization/qtiplot/files | |
parent | Version bump, #249271. Fixes #145727, #193731, #204702, #211250, #226009 and ... (diff) | |
download | gentoo-2-424b7ebcd4002396053b7c1d1194ac3c52a6464c.tar.gz gentoo-2-424b7ebcd4002396053b7c1d1194ac3c52a6464c.tar.bz2 gentoo-2-424b7ebcd4002396053b7c1d1194ac3c52a6464c.zip |
Added patch to fix problem with sip-4.7.9 and qtiplot's sip file (see bug #250014).
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r5 x86_64)
Diffstat (limited to 'sci-visualization/qtiplot/files')
-rw-r--r-- | sci-visualization/qtiplot/files/qtiplot-0.9.7.3-sip.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sci-visualization/qtiplot/files/qtiplot-0.9.7.3-sip.patch b/sci-visualization/qtiplot/files/qtiplot-0.9.7.3-sip.patch new file mode 100644 index 000000000000..2182c14e673e --- /dev/null +++ b/sci-visualization/qtiplot/files/qtiplot-0.9.7.3-sip.patch @@ -0,0 +1,30 @@ +diff -Naur qtiplot-0.9.7.3/qtiplot/src/scripting/qti.sip qtiplot-0.9.7.3.new/qtiplot/src/scripting/qti.sip +--- qtiplot-0.9.7.3/qtiplot/src/scripting/qti.sip 2008-10-20 06:32:35.000000000 -0400 ++++ qtiplot-0.9.7.3.new/qtiplot/src/scripting/qti.sip 2008-12-18 17:24:44.000000000 -0500 +@@ -74,8 +74,6 @@ + MdiSubWindow(const MdiSubWindow&);
+ };
+
+-typedef QList<MdiSubWindow*> MDIWindowList;
+-
+ class Table: MdiSubWindow
+ {
+ %TypeHeaderCode
+@@ -1072,7 +1070,7 @@ + Graph3D* plotParametricSurface(const QString&, const QString&, const QString&,
+ double, double, double, double, int=40, int=40, bool=true, bool=true) /PyName=plot3D/;
+
+- MDIWindowList windowsList() /PyName=windows/;
++ QList<MdiSubWindow*> windowsList() /PyName=windows/;
+
+ // folders
+ Folder *activeFolder() /NoDerived/;
+@@ -1867,7 +1865,7 @@ + #include "src/core/Folder.h"
+ %End
+ public:
+- MDIWindowList windowsList() /PyName=windows/;
++ QList<MdiSubWindow*> windowsList() /PyName=windows/;
+ // TODO: implement signal Folder::nameChanged and make it update the project explorer; adjust renaming from GUI accordingly
+ // void setFolderName(const QString&) /PyName=setName/;
+ QString name();
|