After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 676019 - Include path using quotes does not work as documented
Include path using quotes does not work as documented
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: documentation
1.8.0
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-05-14 09:34 UTC by rdr
Modified: 2012-07-13 05:15 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Sample code used to test the documented feature (128 bytes, text/plain)
2012-05-14 09:34 UTC, rdr
Details
Sample project showing the problem (20.26 KB, application/x-zip-compressed)
2012-06-11 15:28 UTC, rdr
Details

Description rdr 2012-05-14 09:34:26 UTC
Created attachment 213988 [details]
Sample code used to test the documented feature

I tried http://www.stack.nl/~dimitri/doxygen/faq.html, topic 5 (How can I change what is after the #include in the class documentation?), second sample (copied the sample code to a new file with name myhdr.h - see attachment).
The created documentation still shows a '#include <path/myhdr.h>' instead of '#include "path/myhdr.h"'
Comment 1 Dimitri van Heesch 2012-06-09 11:49:22 UTC
Confirmed. 

As a temporary workaround you could set FORCE_LOCAL_INCLUDES to YES.
Comment 2 Dimitri van Heesch 2012-06-10 09:41:52 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.1.1. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.
Comment 3 rdr 2012-06-11 15:27:32 UTC
The FORCE_LOCAL_INCLUDES "trick" works fine for use.

However the documented way still does not work for me in 1.8.1.1.
I'll add an attachment with my test case (doxyfile, directory structure with documented header file). I just saved doxygen.exe (1.8.1.1) next to Doxyfile and called "doxygen doxyfile" (I have no doxygen installed, so I am sure that the new one was used).
In the documentation for MyClassName I still get #include <path/myhdr.h> but expect #include "path/myhdr.h"
Comment 4 rdr 2012-06-11 15:28:55 UTC
Created attachment 216125 [details]
Sample project showing the problem
Comment 5 Dimitri van Heesch 2012-06-13 19:03:43 UTC
Indeed. I've been able to reproduce the problem. Should be corrected in the next update.
Comment 6 Dimitri van Heesch 2012-07-12 15:42:01 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.1.2. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.
Comment 7 rdr 2012-07-13 05:15:35 UTC
Now it works!

Thanks a lot!