Hi,
I was just compiling qmatplot on Mandrake 10.0 and hit
3 small bugs. First;
qmatplot-0.4.2/src/demos/demo2d.cpp
26c26
< // QApplication::setStyle( new QMotifPlusStyle() );
---
> QApplication::setStyle( new QMotifPlusStyle() );
Similarly,
qmatplot-0.4.2/src/demos/demo3d.cpp
33c33
< // QApplication::setStyle( new QMotifPlusStyle() );
---
> QApplication::setStyle( new QMotifPlusStyle() );
Last, there is this one: This is one of those funky c++ odd
ball things, where it works in some compilers, but not in
others. gcc version 3.2.2 does not like the KSWinWorksheet:: in the class KSWinWorksheet.
Hi,
I was just compiling qmatplot on Mandrake 10.0 and hit
3 small bugs. First;
qmatplot-0.4.2/src/demos/demo2d.cpp
26c26
< // QApplication::setStyle( new QMotifPlusStyle() );
---
> QApplication::setStyle( new QMotifPlusStyle() );
Similarly,
qmatplot-0.4.2/src/demos/demo3d.cpp
33c33
< // QApplication::setStyle( new QMotifPlusStyle() );
---
> QApplication::setStyle( new QMotifPlusStyle() );
Last, there is this one: This is one of those funky c++ odd
ball things, where it works in some compilers, but not in
others. gcc version 3.2.2 does not like the KSWinWorksheet:: in the class KSWinWorksheet.
qmatplot-0.4.2/src/kswinworksheet.h
43,44c43
< // void KSWinWorksheet::setDataObject( QSData *data );
< void setDataObject( QSData *data );
---
> void KSWinWorksheet::setDataObject( QSData *data );
After that, it works perfectly. The data above is from diff.
Hope this helps.
Best Regards.