PDA

View Full Version : QObject::connect: Connecting from COMPAT signal...



ricardo
29th June 2009, 18:06
What does this message mean?

QObject::connect: Connecting from COMPAT signal (QActionGroup::selected(QAction*))

I don't know what COMPAT is.

BTW, it seems my program works perfectly.

Thanks in advance

Lykurg
29th June 2009, 18:09
COMPAT means Compatibility with Qt3. Since selected does not longer exists in Qt4, better use the QActionGroup::triggered() signal.