GNOME Bugzilla – Bug 338475
Use of Qt's Q_SIGNALS and Q_SLOTS causes warnings
Last modified: 2006-10-19 19:21:16 UTC
With Doxygen 1.4.6, doxygen produces warnings when encountering Qt's Q_SLOTS and Q_SIGNALS defines. Test case: --------------------------------- class MainWindow { public Q_SLOTS: void openCatalog(); }; void MainWindow::openCatalog() { } --------------------------------- Replace "Q_SLOTS" with "slots" and doxygen parses it without warnings. Q_SLOTS and Q_SIGNALS are sometimes used in library code, combined with defining Q_NO_KEYWORDS, in order to avoid clashes with "slots" and "signals". Regards, Frans
Created attachment 67863 [details] [review] Fix for bugreport
Patch will be included in the next CVS update.
This bug was marked "assigned" by me some time ago, which means it should be fixed in version 1.5.0 and is hereby marked as such. I would kindly request you to check if this version indeed fixes the problem and reopen the bug report should you still see the same problem.