Helge Fredriksen wrote: > Hello! > > I'm trying to compile the java files that comes out from the generator > on some widget we make qtjambi bindings for. I get errors like this: > > com/poseidon/mapborealis/CMbItem.java:7: > com.poseidon.mapborealis.CMbItem is not abstract and does not override > abstract method transformOriginPoint() in > com.trolltech.qt.gui.QGraphicsItemInterface > public class CMbItem extends com.trolltech.qt.QtJambiObject > > My class signature looks like this: > > class CMbItem : public QGraphicsItem, public CMbId > > where CMbId is of no use from the Java side. Thus, we have tried to put > this class to an interface type in the typesystem file: > > <interface-type name="CMbId"/> > > without any success. The strange thing is that the javac compiling works > without problems on Windows? How come? > > I'm using the 4.5.2 version of Qt/Jambi.
QGraphicsItem::transformOriginPoint() was added in Qt 4.6, so it sounds like you are mixing up some libraries here - Gunnar _______________________________________________ Qt-jambi-interest mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest
