|
|
I read an interesting thing (I was not aware of 'til now....) in the
documentation
In "Using the meta object compiler" it is written:
" Multiple inheritance requires QObject to be first
If you are using multiple inheritance, moc assumes that the first inherited
class is a subclass of QObject. Also, be sure that only the first inherited
class is a QObject.
class SomeClass : public QObject, public OtherClass {
...
};
(This limitation is almost impossible to remove; since the moc does not
expand #include or #define, it cannot find out which one of the base classes
is a QObject.) "
As you wrote that your class was derived from Manager but also from Action
without explaining how,
maybe you should think about that.
David.
--
List archive and information: http://lists.trolltech.com/qt-interest/
|
|