[Bug 61180] can't compile atlantik client
| Newsgroups | gmane.comp.kde.devel.atlantik |
|---|---|
| Message-ID | <[email protected]> |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=61180
------- Additional Comments From [email protected] 2003-07-15 14:38 -------
I resolved it my way. I changed these lines from atlantic_core.cpp.
moc:
bool AtlanticCore::qt_invoke( int _id, QUObject* _o )
{
switch ( _id - staticMetaObject()->slotOffset() ) {
case 0: slotDeletePlayer((Player*)static_QUType_ptr.get(_o
+1)); break;
case 1: slotDeleteTrade((Trade*)static_QUType_ptr.get(_o+1));
break;
default:
return QObject::qt_invoke( _id, _o );
}
return TRUE;
}
to:
bool AtlanticCore::qt_invoke( int _id, QUObject* _o )
{
return QObject::qt_invoke( _id, _o );
}
and now I can compile it.
Thank you very much, you were very avaible