Hi,

If one uses QT < 3.1 he will get a warning message on console that SIGNAL
activatedAmbiguously does not exist.
This is true, it is first introduced in QT31, so my patch will fix this
issue.

Bye,
Thomas

Index: licq/plugins/qt-gui/src/mainwin.cpp
===================================================================
RCS file: /cvsroot/licq/qt-gui/src/mainwin.cpp,v
retrieving revision 1.264
diff -u -3 -p -r1.264 mainwin.cpp
--- licq/plugins/qt-gui/src/mainwin.cpp	2 Jan 2003 21:19:48 -0000	1.264
+++ licq/plugins/qt-gui/src/mainwin.cpp	4 Jan 2003 21:28:07 -0000
@@ -3186,8 +3186,10 @@ void CMainWindow::initMenu()
    a->insertItem(ALT + Key_F, ICQ_STATUS_OFFLINE);
    a->insertItem(ALT + Key_I, ICQ_STATUS_FxPRIVATE);
    connect(a, SIGNAL(activated(int)), this, SLOT(changeStatusManual(int)));
+#if QT_VERSION > 309
    connect(a, SIGNAL(activatedAmbiguously(int)), this, SLOT(changeStatusManual(int)));
-   
+#endif
+         
    mnuStatus = new QPopupMenu(NULL);
    mnuStatus->insertItem(pmOnline, tr("&Online"), ICQ_STATUS_ONLINE);
    mnuStatus->insertItem(pmAway, tr("&Away"), ICQ_STATUS_AWAY);

Reply via email to